-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 827 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 827 Bytes
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
from setuptools import setup
import setuptools
with open("README.md", encoding="utf8") as f:
long_description=f.read()
setup(name='prypip',
version='1.0.8',
description='pip for wrapper for properly auto updating requirements.txt and sorting out dependencies',
author='Balogun Precious',
author_email='preciouskent8@gmail.com',
url='https://www.github.com/precious112/prypip',
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
keywords=['pip','requirements','requirements.txt','dependency management'],
python_requires='>=3.8',
install_requires=[
'colorama'
],
entry_points={
"console_scripts": [
'prypip=app.prypip:main'
]
}
)