forked from Asana/python-asana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (38 loc) · 1.3 KB
/
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
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
import sys
import os
from setuptools import setup, find_packages
assert sys.version_info >= (3, 7), 'We only support Python 3.7+'
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'asana'))
# Safely read the version number from the version.py file
version = {}
with open('asana/version.py') as fp:
exec(fp.read(), version)
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
long_description = readme.read()
setup(
name='jv-asana-test',
version=version['__version__'],
description='Asana API client',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
],
install_requires=[
'requests >= 2.20.0, == 2.*',
'requests_oauthlib >= 0.8.0, <2.0',
],
author='Asana, Inc',
# author_email='',
url='http://github.com/asana/python-asana',
packages=find_packages(exclude=('tests', 'examples')),
keywords='asana',
zip_safe=True,
test_suite='tests')