-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (32 loc) · 1.12 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import setuptools
with open("requirements.txt", encoding="utf-8") as r:
requires = [i.strip() for i in r] # Зависимости
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
name = "tippisell_api"
author = "alteralt"
setuptools.setup(
name=name,
version="0.6.12",
long_description=readme,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
author=author,
include_package_data=True,
python_requires=">=3.5",
install_requires=requires,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: Russian",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
project_urls={"Source": "https://github.com/{}/{}".format(author, name)},
)