-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 858 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 858 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
from setuptools import setup
from my_clock.my_clock import __VERSION__
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities'
]
setup(
name='my_clock',
version=__VERSION__,
description='my clock',
long_description=open('README.rst').read(),
author='Yassu',
author_email='mathyassu@gmail.com',
url='https://github.com/yassu/MyClock',
license='MIT',
packages=['my_clock'],
install_requires=['json5', 'tqdm', 'pyaudio'],
classifiers=classifiers,
entry_points="""
[console_scripts]
my_clock = my_clock.my_clock:main
""",
)