-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
44 lines (39 loc) · 1.26 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
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
import sys
import versioneer
long_description = ''
if 'upload' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
setup(
name='codetransformer',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Python code object transformers',
author='Joe Jevnik and Scott Sanderson',
author_email='[email protected]',
packages=find_packages(),
long_description=long_description,
license='GPL-2',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: POSIX',
'Topic :: Software Development :: Pre-processors',
],
url='https://github.com/llllllllll/codetransformer',
install_requires=['toolz'],
extras_require={
'dev': [
'flake8==3.3.0',
'pytest==2.8.4',
'pytest-cov==2.2.1',
],
},
)