-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
35 lines (32 loc) · 1.23 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
"""
Setup file for GShockTimeServer.
Use setup.cfg to configure your project.
This file was generated with PyScaffold 4.4.
PyScaffold helps you to put up the scaffold of your new Python project.
Learn more under: https://pyscaffold.org/
"""
from setuptools import setup, find_packages
setup(
name='gshocktimeserver',
version='0.1',
use_scm_version=True,
packages=find_packages(),
install_requires=[
'pytz', 'bleak', 'reactivex'
],
author='Ivo Zivkov',
author_email='izivkov@gmail.com',
description='This library allows you to interact with your G-Shock watch from Python',
long_description='This library allows you to interact with your G-Shock watch from Python...',
url='https://github.com/izivkov/GShockTimeServer',
license='MIT', # Choose an appropriate license
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)