-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·35 lines (32 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup
from forwardable import __version__
setup(
name='forwardable',
version=__version__,
description="Forwardable as in Ruby's stdlib",
url='https://github.com/5long/forwardable',
long_description=open("README.rst").read(),
author="Whyme Lyu",
author_email="callme5long@gmail.com",
packages=[
'forwardable',
'forwardable.test',
],
package_data={'': ['LICENSE', 'README.rst', 'CHANGELOG.rst']},
include_package_data=True,
license="MIT",
test_suite="forwardable.test",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Code Generators',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)