- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
25 lines (23 loc) · 593 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 593 Bytes
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
fromsetuptoolsimportsetup, find_packages
base_requirements= [
'six>=1.10'
]
setup(
name="helpful",
description="Helpful tools for Python",
author='Cal Leeming',
author_email='cal@iops.io',
url='https://github.com/imsofly/python-helpful',
keywords=['helpful', 'useful'],
version="0.8.1",
py_modules=['helpful'],
setup_requires=[
'pytest-runner>=2.6',
'yanc>=0.3'
],
install_requires=base_requirements,
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)