-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (24 loc) · 1.01 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
# -*- coding: utf-8 -*-
from setuptools import setup
from pycartan.release import __version__
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read()
setup(
name='pycartan',
version=__version__,
author='Carsten Knoll, Klemens Fritzsche, Torsten Knüppel',
author_email='[email protected]',
packages=['pycartan'],
url='https://github.com/TUD-RST/pycartan',
license='BSD3',
description='Python library for (vector) differential forms in control theory',
long_description="""
Representation of differential forms and vector differential forms
with respective operations of exterior calculus (exterior
derivative, wedge product, contraction (interior product), integration, hodge-star).
Background is the application differential forms in the context of
control theory.
""",
keywords='differential forms, wedge product, exterior derivative, frobenius theorem, differential flat systems',
install_requires=requirements,
)