This repository has been archived by the owner on Jun 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
58 lines (49 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
from setuptools import find_packages, setup
from import_order.version import VERSION
install_requires = [
'Pygments >= 2.0.2, < 2.1.0',
]
tests_require = [
'pytest >= 2.7.0',
'tox',
]
def readme():
with open('README.rst') as f:
try:
return f.read()
except (IOError, OSError):
return None
setup(
name="import-order",
version=VERSION,
packages=find_packages(),
url='https://github.com/spoqa/import-order',
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
maintainer='Spoqa',
maintainer_email='dev' '@' 'spoqa.com',
entry_points={
'console_scripts': [
'import-order = import_order.cli:main',
]
},
description='Check python import order.',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
]
)