-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (40 loc) · 1.31 KB
/
setup.py
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
#!/usr/bin/python
"""
RaceScore
"""
import io
from setuptools import setup
with io.open('requirements-testing.txt') as fd:
test_reqs = fd.readlines()
tests_require = [line for line in test_reqs if not line.startswith('#')]
with io.open('README.rst') as fd:
long_desc = fd.read()
setup(
name = 'race-score',
version = '0.1',
description = 'Python parser/processor for scoring time based racing events.',
long_description = long_desc,
author = 'Serge Domkowski',
author_email = '[email protected]',
url = 'https://github.com/sergedomk/race_score',
license = 'BSD',
include_package_data = True,
packages=['race_score'],
install_requires = [],
tests_require = tests_require,
platforms = ['any'],
classifiers = [
'Development Status :: 1 - Planning',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Libraries',
],
)