-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1022 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
35
36
37
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='termipy',
version='0.2.7',
author='Pratik Kumar',
author_email='[email protected]',
description='A versatile command-line shell with system monitoring capabilities',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/pr2tik1/termipy',
packages=find_packages(include=['termipy', 'termipy.*']),
install_requires=[
'psutil',
'colorama',
],
entry_points={
'console_scripts': [
'termipy=termipy.main:main',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
extras_require={
'test': [
'pytest>=6.2.5',
'pytest-cov>=2.12.1',
],
},
)