-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 887 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 887 Bytes
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
from setuptools import setup, find_packages
VERSION = '1.0.0'
DESCRIPTION = 'A motion tracking 3D movier render'
LONG_DESCRIPTION = 'A package that renders movies from 3D motion tracked data, for example from 3D skeleton joint tracking data'
setup(
name="motionrender",
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author="Derek Harter",
author_email="Derek.Harter@tamuc.edu",
license='GPL-3',
packages=find_packages(),
install_requires=[],
keywords='motion tracking, 3D rendering',
classifiers= [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
]
)