48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""The simulator of the Metropolis2 project."""
|
|
|
|
from setuptools import setup
|
|
import pathlib
|
|
|
|
here = pathlib.Path(__file__).parent.resolve()
|
|
|
|
# Get the long description from the README file
|
|
long_description = (here / 'README.md').read_text(encoding='utf-8')
|
|
|
|
setup(
|
|
name='metrosim',
|
|
version='0.1',
|
|
description='The simulator of the Metropolis2 project',
|
|
long_description=long_description,
|
|
long_description_content_type='text/x-rst',
|
|
url='https://git.lucasjavaudin.com/LucasJavaudin/MetroSim',
|
|
author='Lucas Javaudin',
|
|
author_email='me@lucasjavaudin.com',
|
|
classifiers=[
|
|
'Development Status :: 1 - Planning',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Science/Research',
|
|
'Topic :: Scientific/Engineering',
|
|
'License :: Other/Proprietary License',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.9',
|
|
'Programming Language :: Python :: 3 :: Only',
|
|
],
|
|
keywords='transportation, dynamic traffic assignment, metropolis',
|
|
packages=['metrosim'],
|
|
python_requires='>=3.5, <4',
|
|
install_requires=[
|
|
'numpy',
|
|
],
|
|
extras_require={
|
|
'dev': [],
|
|
'test': [],
|
|
},
|
|
package_data={
|
|
'metrosim': ['simple_simulation/*'],
|
|
},
|
|
project_urls={
|
|
'Source': 'https://git.lucasjavaudin.com/LucasJavaudin/MetroSim/',
|
|
'Bug Reports': 'https://git.lucasjavaudin.com/LucasJavaudin/MetroSim/issues',
|
|
},
|
|
)
|