-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (26 loc) · 835 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
29
30
31
32
33
34
import pathlib
import setuptools
VERSION = '1.0.0b0'
ROOT = pathlib.Path('.')
with open(ROOT / 'README.md') as f:
long_description = f.read()
metadata = dict(
name='pipedrivepy',
packages=['pipedrive'],
version=VERSION,
description='Pipedrive API Generic Client',
long_description=long_description,
keywords='Pipedrive, python, API',
author='Vitalii Maslov',
author_email='hello@bindlock.me',
url='https://github.com/bindlock/pipedrivepy',
download_url='https://github.com/bindlock/pipedrivepy/tarball/master',
license='MIT',
extras_require={'sync': ['requests'], 'async': ['aiohttp']},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
)
setuptools.setup(**metadata)