-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
44 lines (41 loc) · 1.33 KB
/
setup.py
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
from setuptools import setup
with open("README.rst") as readme_file:
long_description = readme_file.read()
setup(name="Presser",
version="0.1.8",
packages=["presser",],
license="GNU GPL v3.0",
description="Extracts data from vine, in lieu of an API",
author="Gemma Hentsch",
author_email="[email protected]",
install_requires=[
"beautifulsoup4>=4.3.2",
"requests>=2.4.0",
"PyExecJS>=1.0.4",
],
tests_require=[
"beautifulsoup4",
"requests",
"mock",
"coverage",
"nose",
"PyExecJS",
"responses"
],
long_description=long_description,
test_suite="nose.collector",
url="https://github.com/ladyrassilon/presser",
keywords = ['scraping','vine'],
download_url="https://github.com/ladyrassilon/presser/archive/",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 2.7",
# "Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Intended Audience :: Developers",
]
)