-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 754 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 754 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
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
install_requires = [
'requests-oauthlib >= 0.4.0'
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="semantics3",
version="0.2",
author="Shawn Tan",
author_email="shawn@semantics3.com",
description=("Semantics3 Products API"),
license="MIT",
keywords="api ecommerce products",
url="https://github.com/Semantics3/semantics3-python",
packages=['semantics3'],
long_description=read('README.rst'),
install_requires=install_requires,
classifiers=[
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
]
)