-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.69 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
43
44
45
# pylint: disable=bad-whitespace
from setuptools import setup
import imp
_version = imp.load_source("nostalgia_fitbit._version", "nostalgia_fitbit/_version.py")
long_description = open('README.md').read()
setup(
name='nostalgia_fitbit',
version=_version.__version__,
author='Pascal van Kooten',
author_email='pascal@vks.ai',
license='LICENSE.txt',
url='http://github.com/nostalgia-dev/nostalgia_fitbit/',
description='export fitbit data',
long_description=long_description,
keywords='fitbit data export json',
entry_points={'console_scripts': ['nostalgia_fitbit = nostalgia_fitbit.__main__:main']},
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving',
'Topic :: Utilities',
],
packages=['nostalgia_fitbit'],
include_package_data=True,
install_requires=['requests', 'dominate', 'just', 'python-dateutil'],
)