-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 876 Bytes
/
setup.py
File metadata and controls
34 lines (30 loc) · 876 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
27
28
29
30
31
32
33
34
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="trops",
version="0.2.33",
author="Koji Tanaka",
author_email="kojiwelly@gmail.com",
description=("Track operations"),
long_description_content_type="text/x-rst",
license="MIT",
keywords="linux system administration",
url="http://github.com/kojiwell/trops",
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
long_description=read('README.rst'),
python_requires='>=3.8',
install_requires=[
"tabulate >= 0.8.9"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
entry_points={
'console_scripts': ['trops=trops.exec:main'],
},
)