-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 904 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
# encoding: utf-8
from setuptools import setup
def readme():
"""Import README for use as long_description."""
with open("README.rst") as f:
return f.read()
version = "0.1.1"
setup(
name="viltolyckor_scraper",
version=version,
description="A scraper of statistical data from viltolyckor.se, built on top of Statscraper.",
long_description=readme(),
url="https://github.com/jplusplus/viltolyckor_scraper",
author="Jens Finnäs",
author_email="[email protected]",
license="MIT",
packages=["viltolyckor"],
zip_safe=False,
install_requires=[
"statscraper",
"requests",
"beautifulsoup4",
"lxml",
],
test_suite="nose.collector",
tests_require=["nose"],
include_package_data=True,
download_url="https://github.com/jplusplus/viltolyckor_scraper/archive/%s.tar.gz"
% version,
)