-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (52 loc) · 1.69 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import os
import sys
from setuptools import find_packages, setup
if sys.argv[-1] == "build":
os.system("python setup.py sdist")
sys.exit()
if sys.argv[-1] == "publish":
os.system("python setup.py sdist")
os.system("twine upload dist/*")
sys.exit()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Carlos Silva",
author_email="carlos.miguel.silva@protonmail.com",
name="pyTasker",
description="Run pipelines on your own computer for better automation",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.6.1",
url="/~https://github.com/carlossilva2/pyTasker",
packages=find_packages(),
license="GPLv3",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Typing :: Typed",
],
python_requires=">=3.8",
entry_points={"console_scripts": ["tasker = Tasker.__main__:main"]},
install_requires=[
"requests",
"pychalk",
"questionary",
"validators",
"typing_extensions",
],
package_data={},
project_urls={
"Source": "/~https://github.com/carlossilva2/pyTasker",
"Documentation": "https://cmsilva.gitbook.io/pytasker/",
},
)