forked from TTCColorado/pydubins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (39 loc) · 1.35 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
37
38
39
40
41
42
43
from setuptools import setup, Extension
from Cython.Build import cythonize
import os
extensions = [
Extension(
"dubins",
["dubins/src/dubins.c", "dubins/dubins.pyx"],
include_dirs = ["dubins/include", "dubins/core.pxd"]
)
]
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
contents = open(path).read()
return contents
setup(
name = "dubins",
version = "1.1.1",
description = "Code to generate and manipulate dubins curves",
long_description = read('README.rst'),
author = "Andrew Walker",
author_email = "walker.ab@gmail.com",
url = "http://github.com/AndrewWalker/pydubins",
license = "MIT",
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Mathematics',
],
ext_modules = cythonize(extensions),
)