-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (33 loc) · 951 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
34
35
36
37
from setuptools import setup
from setuptools.command.install import install
from setuptools.command.install_scripts import install_scripts
from distutils import log
import pathlib
import re
import os
here = pathlib.Path(__file__).parent.resolve()
content = (here / "README.md").read_text(encoding="utf-8")
summary = re.search("(?sia)What\?\n----\n(.+?)\n\n", content)[1]
setup(
name="aionion",
version="0.0.1",
url="https://github.com/ultrafunkamsterdam/aionion",
license="MIT",
author="UltrafunkAmsterdam",
author_email="",
desc=summary,
long_description=content,
long_description_content_type="text/markdown",
package_dir={"aionion": "aionion"},
packages=["aionion"],
include_package_data=True,
install_requires=[
"bs4",
"lxml",
"aiohttp>=3.8.0",
"aiohttp_socks>=0.7.0",
"stem>=1.8.0",
"requests>=2.26",
"async_timeout>=4.0.1",
],
)