forked from bartTC/pip-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 821 Bytes
/
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
#!/usr/bin/env python
from sys import exit
from setuptools import find_packages, setup
long_description = u"\n\n".join((open("README.rst").read(),))
setup(
name="pip-check",
version="2.9a1",
description="Display installed pip packages and their update status..",
long_description=long_description,
author="Martin Mahner",
author_email="[email protected]",
url="https://github.com/bartTC/pip-check/",
classifiers=[],
package_dir={"": "src"},
packages=find_packages(
where="src",
),
package_data={},
include_package_data=True,
entry_points={
"console_scripts": [
"pip-check = pip_check:main",
]
},
python_requires=">=3.6",
install_requires=[
"terminaltables",
"packaging",
"pip>=9",
],
)