-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
28 lines (23 loc) · 872 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 setuptools import find_packages, setup
from wheniwork.version import VERSION_NUMBER
with open('./requirements.txt') as f:
requirements = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='wheniwork',
packages=find_packages(exclude=("tests", "docs",)),
version=VERSION_NUMBER,
description='A library for interfacing with the WhenIWork.com API',
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author='Alex Riviere',
author_email='[email protected]',
url='https://github.com/fimion/wheniwork-api-py',
download_url='https://github.com/fimion/wheniwork-api-py/tarball/{version}'
.format(version=VERSION_NUMBER),
keywords=['wheniwork', 'api'],
classifiers=[],
install_requires=requirements,
)