-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (52 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
from setuptools import setup
version = "0.17"
with open("README.rst", encoding="utf-8") as fi:
readme = fi.read()
requirements = [
"pyyaml",
]
setup(
name="distriploy",
version=version,
description=("Release deployment utility"),
long_description=readme,
long_description_content_type="text/x-rst",
author="Jérôme Carretero",
author_email="[email protected]",
url="https://github.com/exmakhina/distriploy",
packages=["distriploy"],
package_dir={"distriploy": "distriploy"},
entry_points={"console_scripts": ["distriploy = distriploy.__main__:main"]},
include_package_data=True,
python_requires=">=3.6",
install_requires=requirements,
extras_require={
"osf": ["osfclient"],
},
license="MIT",
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
'Operating System :: Unix',
'Operating System :: MacOS',
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Topic :: Software Development",
],
keywords=[
"releng",
"deployment",
"distribution",
],
)