This repository was archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·49 lines (47 loc) · 1.51 KB
/
setup.py
File metadata and controls
executable file
·49 lines (47 loc) · 1.51 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
46
47
48
49
# encoding: utf-8
from setuptools import setup
import os.path
setup(
name="datasift",
version="2.12.1",
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.8.0',
'autobahn <0.10.0, >=0.9.4',
'six <2.0.0, >=1.6.0',
'twisted <16.0.0, >=14.0.0',
'pyopenssl <18.0.0, >=17.5.0',
'python-dateutil <3, >=2.1',
'service_identity >= 14.0.0',
'requests-futures >= 0.9.5',
'ndg-httpsclient >= 0.4.0'
],
tests_require=[
'httmock >=1.1.1, < 2.0.0',
'pytest',
'beautifulsoup4',
'behave'
],
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",
],
)