forked from expo-community/expo-server-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 737 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
from setuptools import find_packages
from setuptools import setup
import os
import re
HERE = os.path.abspath(os.path.dirname(__file__))
README_PATH = os.path.join(HERE, 'README.md')
try:
with open(README_PATH) as fd:
README = fd.read()
except IOError:
README = ''
setup(
name='exponent_server_sdk',
version='2.0.0',
description='Expo Server SDK for Python',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/expo/exponent-server-sdk-python',
author='Expo Team',
author_email='[email protected]',
license='MIT',
install_requires=[
'requests',
'six',
],
packages=find_packages(),
zip_safe=False
)