-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (23 loc) · 825 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
import setuptools
import animu
version = animu.__version__
author = animu.__author__
requirements = []
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name = "animu",
author = author,
author_email = "iameitozx@gmail.com",
url = "http://github.com/EitoZX/Animu",
version = version,
description = "Animu API Wrapper written in Python that has both Sync & Async Client",
long_description = long_description,
long_description_content_type = "text/markdown",
packages = setuptools.find_packages(),
license_files = "LICENSE",
install_requires = requirements,
keywords = ['animu-api','anime','anime-quotes', 'anime-api', 'animeapi', 'animu', 'anime-quotes-api',],
)