-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 1.05 KB
/
setup.py
File metadata and controls
33 lines (32 loc) · 1.05 KB
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
from distutils.core import setup
setup(
name='ars',
packages=["ars", "ars.behavior", "ars.core", "ars.db", "ars.utils"],
version='0.2',
license='GLP3',
description='TYPE YOUR DESCRIPTION HERE',
author='Melvyn Linke',
author_email='Melvyn.linke@web.de',
url='https://github.com/MelVimL/AgentRoutingSimulator',
download_url='https://github.com/MelVimL/AgentRoutingSimulator.git',
keywords=['Multi Agent Systems', 'Networking', 'Simulation'],
install_requires=[
'networkx',
'pytest',
'numpy',
'pyyaml',
'scipy',
'sqlalchemy',
'psycopg2-binary'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers :: Students',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GLP3 License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)