forked from TeamYoshiBelgium/GoogleHashCode2017Q
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 620 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 620 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 distutils.core import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='hash_code_2017_q',
version='1.0.0',
packages=['hash_code_2017_q'],
url='',
license='',
author='',
author_email='',
description='',
long_description=readme(),
install_requires=[
],
classifiers=[
'',
],
keywords='',
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': ['package=package.command_line:main'],
},
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
)