forked from TSheetsTeam/api_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 773 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
24
25
26
27
28
from distutils.core import setup
from setuptools import find_packages
packages = [
'tsheets',
'tsheets.repos',
'tsheets.models',
]
setup(
name='tsheets',
version='0.3',
description='API library helper for TSheets.com',
long_description='Allows to use the TSheets.com API to manage the timesheets and all other related data',
author='Kannan Ponnusamy',
author_email ='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests']),
url='https://github.com/tsheets/api_python',
download_url='https://github.com/tsheets/api_python/tarball/0.3',
keywords=['api', 'rest', 'tsheets'],
install_requires=[
'requests>=2.7.0',
'python-dateutil==2.8.1',
'pytz>=2015.7'
]
)