-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
42 lines (39 loc) · 1.3 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
from pathlib import Path
from setuptools import setup
# "import" __version__
__version__ = 'unknown'
with Path('src/splines/__init__.py').open() as f:
for line in f:
if line.startswith('__version__'):
exec(line)
break
setup(
name='splines',
packages=['splines'],
package_dir={'': 'src'},
version=__version__,
author='Matthias Geier',
author_email='[email protected]',
description='Splines in Euclidean Space and Beyond',
long_description=Path('README.rst').read_text(),
install_requires=['NumPy'],
python_requires='>=3.7',
license='MIT',
keywords='splines curves interpolation quaternions'.split(),
url='https://splines.readthedocs.io/',
project_urls={
'Documentation': 'https://splines.readthedocs.io/',
'Source Code': 'https://github.com/AudioSceneDescriptionFormat/splines/',
'Bug Tracker': 'https://github.com/AudioSceneDescriptionFormat/splines/issues/',
},
platforms='any',
classifiers=[
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
zip_safe=True,
)