-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (29 loc) · 1.36 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
from setuptools import setup
from setuptools.extension import Extension
dic = {}
exec(open('pydevd_reload/pydevd_reload.py').read(), dic)
VERSION = dic['__version__']
if __name__ == '__main__':
setup(name='pydevd_reload',
version=VERSION,
description='An enhanced reload module from PyDev',
long_description=open('README.rst').read(),
author='fyrestone',
author_email='fyrestone@outlook.com',
url='https://github.com/fyrestone/pydevd_reload',
license="Eclipse Public License",
packages=['pydevd_reload'],
ext_modules=[Extension("pydevd_reload._pydevd_reload", ["pydevd_reload/_pydevd_reload.c"])],
keywords="reload generic utility",
platforms=["All"],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
test_suite='tests',
zip_safe=False)