forked from exoscale/python-exoscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.3 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
from setuptools import setup, find_packages
INSTALL_REQUIRES = []
with open("requirements.txt", "r", encoding="utf-8") as f:
INSTALL_REQUIRES = list(i.rstrip() for i in f.readlines())
EXTRA_REQUIRE = []
with open("requirements.dev.txt", "r", encoding="utf-8") as f:
EXTRA_REQUIRE = list(i.rstrip() for i in f.readlines())
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="exoscale",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
version="0.4.0",
license="ISC",
url="https://github.com/exoscale/python-exoscale",
author="Exoscale",
author_email="contact@exoscale.com",
platforms="any",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
python_requires=">=3.6",
install_requires=INSTALL_REQUIRES,
extra_require=EXTRA_REQUIRE,
tests_require=["pytest>=5.0.0"],
include_package_data=True,
)