forked from SiftScience/sift-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (33 loc) · 1022 Bytes
/
setup.py
File metadata and controls
42 lines (33 loc) · 1022 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
35
36
37
38
39
40
41
42
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except:
README = ''
CHANGES = ''
setup(
name='Sift',
description='Python bindings for Sift Science\'s API',
version='1.1.2.0', # NB: must be kept in sync with sift/version.py
url='https://siftscience.com',
author='Sift Science',
author_email='support@siftscience.com',
long_description=README + '\n\n' + CHANGES,
packages=['sift'],
install_requires=[
"requests >= 0.14.1",
"mock >= 1.0.1",
],
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)