-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
27 lines (26 loc) · 1.31 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
from setuptools import setup, find_packages
setup(name="punchcards",
version='0.3.1',
description='Punch Card Reader',
url='http://github.com/UMD-DCIC/punchcards',
author='Gregory N. Jansen',
author_email='[email protected]',
download_url = 'https://github.com/UMD-DCIC/punchcards/archive/0.3.1.tar.gz',
keywords = ['PUNCH', 'CARD', 'PUNCHCARD', 'IMAGE'],
license='GPL 3.0',
packages=['punchcards'],
install_requires=['docopt','Pillow','numpy'],
entry_points = {
'console_scripts': ['punchcards=punchcards.cli:main', 'punchcard=punchcards.punchcard:main'],
},
classifiers=[
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
zip_safe=False)