-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 890 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 890 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
#!/usr/bin/python3.5
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='binary_clock',
version='0.0.2',
description='Truly Binary Clock',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
],
keywords='binary clock',
url='https://github.com/zeycus/binary_clock/',
author='Miguel Garcia (aka Zeycus)',
author_email='zeycus@gmail.com',
license='MIT',
platforms=['Windows', 'Linux'],
packages=['binary_clock'],
install_requires=[],
include_package_data=True,
scripts=['bin/binclock.py'],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)