forked from mnmelo/lazy_import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (39 loc) · 1.71 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
45
46
47
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as infile:
readme = infile.read()
with open('lazy_import/VERSION') as infile:
version = infile.read().strip()
tests_require = ['pytest>=4.4.0', 'pytest-xdist']
setup(name='sloth_import',
version=version,
description='A module for lazy loading of Python modules',
long_description=readme,
url='https://github.com/matthewphsmith/lazy_import',
author='Manuel Nuno Melo, Matthew Smith',
author_email='[email protected]',
license='GPL',
platforms=["any"],
classifiers=['Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: '
'Python Modules',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
],
packages=find_packages(),
install_requires=['six'],
test_suite='lazy_import.test_lazy',
tests_require=tests_require,
extras_require={'test': tests_require},
package_data={'lazy_import': ['VERSION']}
)