-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 1.07 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="CLIP-Crawler",
version="1.1.0",
author="Cláudio Pereira",
author_email="development@claudiop.com",
description=(
"A wrapper/crawler meant to fetch information from the Campus Life Integration Platform (clip.fct.unl.pt)"),
license="GPL V3",
keywords="CLIP Clip FCT UNL wrapper crawler",
url="https://gitlab.com/claudiop/CLIPy",
packages=find_packages(),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Portuguese",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Text Processing :: Markup :: HTML",
], install_requires=['sqlalchemy', 'requests', 'beautifulsoup4', 'htmlmin', 'unidecode', 'html5lib', 'pymongo']
)