-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 920 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="spatial-casadi",
description="Spatial transformation library for CasADi Python.",
version="1.1.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cmower/spatial-casadi",
project_urls={
"Homepage": "https://cmower.github.io/spatial-casadi/",
"Documentation": "https://cmower.github.io/spatial-casadi/",
"Bug Tracker": "https://github.com/cmower/spatial-casadi/issues",
"Source": "https://github.com/cmower/spatial-casadi",
},
author="Christopher E. Mower",
author_email="[email protected]",
license="LGPL-3.0 license",
packages=["spatial_casadi"],
install_requires=["casadi"],
extras_require={"test": ["pytest", "numpy", "scipy"]},
)