-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 742 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (29 loc) · 742 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
from setuptools import setup, find_packages
setup(
name="habitx", # the name used on PyPI and pip
version="0.1.0",
description="A CLI-based habit tracker to build and track healthy habits",
author="Dev Mad",
author_email="maddev@example.com",
packages=find_packages(),
include_package_data=True,
package_data={
'habit_tracker': ['../demo.json'], # Adjust path as needed
},
install_requires=[
"fire",
"pyfiglet",
"pytz",
"tabulate",
"rich",
"peewee",
"pytest",
"python-dateutil"
],
entry_points={
"console_scripts": [
"habitx=habit_tracker.main:main",
]
},
python_requires=">=3.8",
)