-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 874 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 874 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
28
29
30
31
32
33
34
from setuptools import find_packages, setup
from insprd import version
from insprd.utils.version import get_version
VERSION = get_version(version)
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='insprd',
version=VERSION,
description='Python interface into Inspired Platform',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Jeff Trudeau',
author_email='jeff.trudeau@gmail.com',
url='https://github.com/InspiredMember/inspired-python',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'insprd': ['templates/*']},
include_package_data=True,
install_requires=[
'cryptography==2.7',
'PyJWT==1.7.1',
'requests==2.22.0',
],
python_requires='>=3.6',
entry_points="""
""",
)