-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
31 lines (27 loc) · 1.03 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
"""Setup for package uos_activpal."""
import setuptools
import uos_activpal.__init__ as specs
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name=specs.name,
version=specs.version,
description='A package for working with activPAL data',
author='Rob Broadley',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='GPLv2',
url='https://github.com/R-Broadley/python-uos-activpal',
download_url='https://github.com/R-Broadley/python-uos-activpal/archive/{ver}.tar.gz'.\
format(ver=specs.version),
packages=setuptools.find_packages(),
include_package_data=True,
keywords=['activpal', 'accelerometer', 'wearable', 'activity-monitor'],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
),
)