-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.07 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.07 KB
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
from setuptools import setup, find_packages
import codecs
# Read the README file with proper encoding
with codecs.open("README.md", "r", "utf-8") as fh:
long_description = fh.read()
setup(
name="devtracker-cli",
version="0.1.0",
packages=["devtracker_cli"],
include_package_data=True,
install_requires=[
"click>=8.0.0",
"matplotlib>=3.5.0",
"numpy>=1.21.0"
],
extras_require={
"dev": [
"pytest>=6.0.0",
],
},
entry_points={
"console_scripts": [
"devtracker=devtracker_cli.cli:cli",
],
},
author="Aswin M S",
author_email="deto2026@gmail.com",
description="A command-line tool to track development time and breaks",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aswinms926/devtracker-cli",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)