-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
34 lines (29 loc) · 1003 Bytes
/
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
#!/usr/bin/env python
import os
import setuptools
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
]
setuptools.setup(
author='Piotr Kilczuk',
author_email='[email protected]',
name='py-raildriver',
version='1.1.7',
description='Python interface to Train Simulator 2016',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/centralniak/py-raildriver',
license='MIT License',
platforms=['Windows'],
classifiers=CLASSIFIERS,
install_requires=open('requirements.txt').read(),
tests_require=open('test_requirements.txt').read(),
packages=setuptools.find_packages(),
include_package_data=False,
zip_safe=False,
test_suite='nose.collector',
)