-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (35 loc) · 1013 Bytes
/
setup.py
File metadata and controls
48 lines (35 loc) · 1013 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='dit',
version='0.7.3',
description='A CLI work time tracking tool.',
url='https://github.com/filipelbc/dit',
author='Filipe L B Correia',
author_email='filipelbc@gmail.com',
license='MIT',
classifiers=[
'Development Status :: Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
],
keywords='timetable clocking',
packages=['dit'],
install_requires=['tzlocal'],
extras_require={
'dev': [],
'test': [],
},
package_data={
'dit': ['command_info.json'],
},
entry_points={
'console_scripts': ['dit=dit:main',
'dit-completion=dit:completion'],
},
)