forked from EnverMT/Primavera_REST_API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 717 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 717 Bytes
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='Primavera_REST_Api',
version='0.1.0',
url='https://github.com/EnverMT/Primavera_REST_API',
long_description=readme(),
long_description_content_type='text/markdown',
packages=['Primavera_REST_Api'],
license='MIT',
author='EnverMT',
author_email='anvarmtg@gmail.com',
install_requires=['requests'],
keywords=['primavera', 'rest', 'api'],
description='Primavera EPPM REST API client',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)