-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 953 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 953 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
31
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open("README.md", "r") as fh:
long_description = fh.read()
config = {
'description': 'Automatic rule based Linux Time Tracker',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'author': 'Tautvidas Sipavicius',
'author_email': 'flakas@tautvidas.com',
'url': 'https://github.com/flakas/Latte',
'python_requires': '>=3.6',
'install_requires': ['sqlalchemy==1.4.5', 'progress==1.5'],
'test_suite': 'tests',
'tests_require': ['mock>=2.0.0', 'nose==1.3.7'],
'packages': ['latte'],
'entry_points': {'console_scripts': ['latte=latte.cli:main']},
'version': '5.0-dev',
'name': 'latte',
'classifiers': (
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
),
}
setup(**config)