This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
58 lines (53 loc) · 1.65 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 setup
# import multiprocessing to avoid this bug (http://bugs.python.org/issue15881#msg170215)
import multiprocessing
assert multiprocessing
def get_long_description():
desc = ''
with open('./README.md') as f:
desc = f.read()
return desc
setup(
name='pip-conflict-checker',
version='0.6.0',
description='A tool that checks installed packages against all package requirements for version conflicts.',
long_description=get_long_description(),
classifiers=[
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'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',
'Programming Language :: Python :: 3.8',
],
keywords='python pip dependencies conflicts versions checker',
author='Ambition',
author_email='[email protected]',
url='https://github.com/ambitioninc/pip-conflict-checker',
license='MIT',
install_requires=[
'pip>=1.4.1',
'nose>=1.3.0',
'mock>=1.0.1',
'flake8',
'coverage'
],
packages=['pipconflictchecker'],
entry_points={
'console_scripts': [
'pipconflictchecker = pipconflictchecker.checker:main'
]
},
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=[
'nose>=1.3.0',
'mock>=1.0.1',
'flake8',
'coverage'
],
)