-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (20 loc) · 934 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
# setuptools file By Amal
# ---------------------------------
from setuptools import setup , find_packages
setup( name = "Amal web crawler",
version = "0.1",
packages = find_packages(),
scripts = ['Amal_crawler'],
install_requires=['BeautifulSoup'],
package_data = { 'pymycraawler': [''], },
author = "Amal Roumi Suliman",
author_email = "[email protected]",
description = "Web crawler in Python ",
license = "GNU GPLv3",
keywords = "web_crawler ,MSWL, web_spider, python ",
url = "https://github.com/Roumia/mswl-dt",
long_description = " Web crawler in Python ,assignments for \
Development Tools one of the subject in MSWL,URJC\
that get the current version of a web pagSpider to\
track the updates of a web page",
download_url = "", )