-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
32 lines (30 loc) · 1.12 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
#!/usr/bin/env python
import sys
from setuptools import setup
setup(
name='demandimport',
version='0.3.5.dev0',
description='On-demand imports, taken from mercurial',
long_description="{0:s}\n{1:s}". format(
open('README.rst').read(),
open('CHANGES.rst').read()),
author='Bas Westerbaan',
author_email='[email protected]',
url='http://github.com/bwesterb/py-demandimport/',
packages=['demandimport', 'demandimport.tests'],
package_dir={'demandimport': 'src'},
test_suite='demandimport.tests',
license='GPLv2+',
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'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',
'Topic :: Software Development :: Libraries',
]
),