forked from erikliland/pyMHT-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 986 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
from setuptools import find_packages
from setuptools import setup
name = "pyMHT-simulator"
author = "Erik Liland"
author_email = "[email protected]"
description = "A framework for testing pyMHT"
license = "BSD"
keywords = 'simulation'
url = 'http://autosea.github.io/sf/2016/04/15/radar_ais/'
install_requires = ['matplotlib', 'numpy>=1.8.0', 'scipy', 'termcolor', 'seaborn']
dependency_links = ['https://github.com/erikliland/pyMHT/tarball/master']
packages = find_packages(exclude=['logs', 'data', 'profile'])
setup(
name=name,
author=author,
author_email=author_email,
description=description,
license=license,
keywords=keywords,
packages=packages,
include_package_data=True,
install_requires=install_requires,
dependency_links=dependency_links,
entry_points={
'console_scripts': [
'simAllSingle=pysimulator.runScenarios:mainSingle',
'simAllMulti=pysimulator.runScenarios:mainMulti'
]
}
)