-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (27 loc) · 863 Bytes
/
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
from setuptools import setup, find_packages
README = 'provide --dry-run functionality for your application'
requires = []
tests_require = [ 'pytest', ]
setup(name='dryable',
version='1.2.0',
description=README,
long_description=README,
url='https://github.com/haarcuba/dryable',
author='Yoav Kleinberger',
author_email='[email protected]',
keywords='subprocess',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
extras_require={
'testing': tests_require,
},
install_requires=requires,
entry_points={},
classifiers = [
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)