-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 948 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
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="tdta",
version="0.1.0.dev25",
description="The aim of this project is to provide taxonomy development tools custom actions.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/hkir-dev/taxonomy-development-tools-actions",
author="",
license="Apache-2.0 license",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
package_dir={'': 'src'},
packages=["tdta"],
include_package_data=True,
install_requires=['requests', 'cas-tools'],
entry_points={
"console_scripts": [
"tdta=tdta.__main__:main",
]
},
)