-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 833 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='hubpy',
version='0.3',
author='Enrique Coronado',
author_email='enriquecoronadozu@gmail.com',
url='https://github.com/EmaroLab/HMPy',
description='Python library for the modelling and recognition of Human Motion Primitives',
long_description=open('README.txt').read(),
packages=["gesture"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Software Development"
]
)