-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (27 loc) · 844 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="manytasks",
version="2.3",
keywords=["manytasks", ],
description="A tool for deploying many tasks automatically.",
long_description=long_description,
long_description_content_type='text/markdown',
license="WTFPL Licence",
url="https://github.com/dugu9sword/manytasks",
author="dugu9sword",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
platforms="any",
install_requires=open("requirements.txt").readlines(),
zip_safe=False,
scripts=[],
entry_points={
'console_scripts': [
'manytasks = manytasks.entry:main',
]
}
)