forked from group-eluvia-com/clockify-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 801 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='clockify-api-client',
version='0.1.2',
author="Michael Bláha",
author_email="michael.blaha@eluvia.com",
description="Simple python API client for clockify. Inspired by https://pypi.org/project/clockify/library.",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eluvia-com/clockify-api-aclient",
install_requires=['requests', 'factory_boy'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extras_require={"dev": ["twine"]}
)