-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (37 loc) · 1.12 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
from setuptools import find_packages, setup
with open("app/readme.md", "r") as f:
long_description = f.read()
setup(
name="taskwise",
version="1.0.5",
description="Taskwise is a CLI application for managing tasks through command line",
package_dir={"": "app"},
packages=find_packages(where="app"),
entry_points="""
[console_scripts]
taskwise= taskwise.main:main
""",
keywords="taskwise, cli, task management",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/elamandeep/taskwise/",
author="Aman Deep",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
install_requires=[
"questionary>=1.10.0",
"rich>=13.5.2",
"shellingham>=1.5.0.post1",
"typer>=0.9.0",
"typing_extensions>=4.7.1",
],
extras_require={
"dev": ["pytest>=7.0", "twine>=4.0.2"],
},
python_requires=">=3.10",
)