-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 681 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 681 Bytes
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
# -*- coding: utf-8 -*-
"""setup.py"""
from setuptools import setup, find_packages
with open("README.md") as f:
README = f.read()
with open("LICENSE") as f:
LICENSE = f.read()
setup(
name="dataland",
version="1.1.1",
description="A jutsu of data style",
long_description=README,
author="Sourcepirate",
author_email="plasmashadowx@gmail.com",
url="https://github.com/sourcepirate/datastyle.git",
license=LICENSE,
packages=find_packages(exclude=("tests", "docs")),
install_requires=[
"aiohttp==3.7.4",
"untangle==1.2.1",
"beautifulsoup4==4.6.3",
"selenium==3.141.0",
],
test_suite="tests",
)