forked from MeltwaterArchive/datasift-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (43 loc) · 1.39 KB
/
setup.py
File metadata and controls
executable file
·45 lines (43 loc) · 1.39 KB
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
45
# encoding: utf-8
from setuptools import setup
import os.path
setup(
name="datasift-beta",
version="2.0.7",
author="DataSift",
author_email="opensource@datasift.com",
maintainer="DataSift",
maintainer_email="opensource@datasift.com",
description="The official DataSift API library for Python.",
long_description = os.path.isfile("README.rst") and open('README.rst').read() or None,
license=(
"Copyright (C) 2012-Present by MediaSift Ltd. "
"All Rights Reserved. "
"See LICENSE for the full license."
),
url="https://github.com/datasift/datasift-python",
packages=['datasift'],
install_requires=[
'requests <3.0.0, >=2.2.0',
'autobahn <0.8.0, >=0.7.4',
'six <1.6.0, >=1.5.2',
'twisted <14.0.0, >=13.0.0',
'pyopenssl <0.14.0, >=0.13.1',
'python-dateutil <2.3, >=2.1'
],
tests_require=[
'httmock >=1.1.1, < 2.0.0',
'pytest',
'beautifulsoup4'
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)