-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.31 KB
/
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
35
36
from setuptools import setup
import numpy as np
import os
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
setup(name="navmet",
version="0.1.0",
install_requires=["numpy", "scipy", "matplotlib"],
packages=['navmet', 'navmet.tests'],
include_package_data=True,
description="Robot Navigation Metrics",
author="Billy Okal",
author_email="sudo@makokal.com",
url="https://github.com/srl-freiburg/navmet",
license="MIT",
use_2to3=True,
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
include_dirs=[np.get_include()]
)