-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 905 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='accepts',
version='0.0.1',
url='https://github.com/amboxer21/CustomPythonDecorators',
license='GPL-3.0',
author='Anthony Guevara',
author_email='[email protected]',
description='This program allows you to restrict types passed to a method.',
packages=find_packages(exclude=['tests']),
long_description=open('README.md').read(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
zip_safe=True,
setup_requires=['re'],)