- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
23 lines (21 loc) · 620 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 620 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding=utf-8
fromsetuptoolsimportfind_packages
fromsetuptoolsimportsetup
withopen('README.rst') asreadme:
long_description=readme.read()
setup(
name="python-gnip",
version="0.0.2",
description="Gnip Powertrack Wrapper",
long_description=long_description,
author="Martin-Zack Mekkaoui",
author_email="martin@mekkaoui.fr",
license="MIT License",
url="https://github.com/mekza/python-bright/",
keywords="gnip data twitter",
classifiers=[],
packages=find_packages(),
include_package_data=True,
install_requires=['requests>=2.10.0'],
zip_safe=False
)