-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1012 Bytes
/
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
import os
from setuptools import setup
__version__ = "0.1.0"
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md")) as f:
long_description = f.read()
setup(
name="milliped",
packages=["milliped"],
version=__version__,
description="Web crawling framework",
long_description=long_description,
url="https://github.com/jschnab/milleped",
author="Jonathan Schnabel",
author_email="[email protected]",
license="GNU General Public License v3.0",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3.6",
],
python_requires=">=3.6.8",
keywords="web crawling",
install_requires=[
"beautifulsoup4",
"boto3",
"requests",
"selenium",
"sqlalchemy",
"stem",
]
)