generated from kineticstoolkit/kineticstoolkit_extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.27 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
"""Setup tool for building a pip-accessible package."""
import setuptools
#--------------------------------------------------------------------------------
# Please modify to fit your extension (particularly the text in CAPITALS)
#--------------------------------------------------------------------------------
name = "kineticstoolkit_n3d"
description = "Provides read_n3d() to read Optotrack 3d acquisitions."
url = "https://github.com/felixchenier/kineticstoolkit_n3d"
author = "Félix Chénier"
author_email = "[email protected]"
#--------------------------------------------------------------------------------
# It may be advised to avoid modifying the rest of this file.
#--------------------------------------------------------------------------------
with open("README.md", "r") as fh:
long_description = fh.readline()
setuptools.setup(
name=name,
description=(description),
long_description=long_description,
long_description_content_type="text/markdown",
url=url,
author=author,
author_email=author_email,
license='Apache',
license_files=['LICENSE.txt'],
use_scm_version=True,
setup_requires=['setuptools_scm'],
packages=setuptools.find_packages(),
install_requires=['kineticstoolkit'],
python_requires='>=3.8',
)