-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
35 lines (33 loc) · 866 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
35
try:
from setuptools import setup
except:
from distutils.core import setup
config = {
'description': 'Moncli, a pythonic/DDD client for Monday.com',
'author': 'Andrew Shatz, Trix Solutions',
'url': r'https://github.com/trix-solutions/moncli',
'download_url': r'https://github.com/trix-solutions/moncli',
'author_email': 'andrew.shatz@trix.solutions',
'version': '2.0.14',
'license': 'BSD 3',
'install_requires': [
'requests>=2.24.0',
'pytz>=2020.1',
'pycountry>=20.7.3',
'deprecated>=1.2.10',
'schematics>=2.1.0'
],
'tests_require': [
'nose>=1.3.7'
],
'packages': [
'moncli',
'moncli.api_v1',
'moncli.api_v2',
'moncli.entities',
'moncli.column_value'
],
'scripts': [],
'name': 'moncli'
}
setup(**config)