-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (35 loc) · 1.23 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
45
46
47
48
49
50
51
52
53
54
55
56
57
from setuptools import setup, find_packages
from arackpy import __release__
long_description = open("README", "r").read()
setup(
name="arackpy",
version=__release__,
description="A simple multithreaded web crawler and scraper.",
# display on pypi
long_description=long_description,
url="https://www.github.com/denisgomes/arackpy",
author="Denis Gomes",
author_email="denis.mp.gomes@gmail.com",
license="BSD",
# advertise program attributes
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
keywords="web crawler scraper spider",
# excluded in build distributions, applies to packages only
packages=find_packages(exclude=[
"arackpy.docs", "arackpy.examples", "arackpy.tests"
]),
# install from pypi, requirements.txt is for developers only
install_requires=[],
package_data={},
# MANIFEST.in works for source distributions only
data_files=[("", ["LICENSE.txt", "README"])],
# scripts= ,
# tests
test_suite="tests",
)