-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·37 lines (36 loc) · 871 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
33
34
35
36
37
#!/usr/bin/env python3
from setuptools import setup
setup(
name="timesheet",
version_config={
"version_file": "timesheet/VERSION",
"count_commits_from_version_file": True,
},
python_requires=">=3.9",
setup_requires=["setuptools-git-versioning"],
install_requires=[
"click>=7.1",
"sqlalchemy>=1.3,<2",
],
extras_require={
"dev": [
"black>=23.1.0",
"ipython>=7.19.0",
"pdbpp>=0.10.2",
"pylint>=2.6.0",
"sqlalchemy-stubs>=0.3",
],
"full": [
"PyYAML>=5.3",
"toml>=0.10.2",
],
},
include_package_data=True,
packages=["timesheet"],
entry_points={
"console_scripts": [
"clock = timesheet.cli:clock",
"timesheet = timesheet:main",
]
},
)