-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 919 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
#!/usr/bin/env python3
""" PYTHON3 - Setup for pypml. """
from setuptools import setup
def readme():
""" README """
with open('README.rst') as freader:
return freader.read()
setup(name='pypml',
version='0.2',
description='Parking Monitor Library for SUMO via TraCI.',
url='http://github.com/lcodeca/pypml',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Eclipse Public License 2.0 (EPL-2.0)',
'Programming Language :: Python :: 3 :: Only',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
author='Lara Codeca',
author_email='[email protected]',
license='EPL-2.0',
packages=['pypml'],
install_requires=[],
include_package_data=True,
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])