-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (25 loc) · 830 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
#!/usr/bin/env python
import setuptools
from nekobin import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
dependencies = [_.strip() for _ in f]
setuptools.setup(
name="nekobin",
version=__version__,
description="Nekobin API Wrapper",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU Lesser General Public License v3 (LGPLv3)",
author="Pokurt",
author_email="poki@pokurt.me",
url="https://github.com/OpenRestfulAPI/nekobinpy",
packages=setuptools.find_packages(exclude="example.py"),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
],
install_requires=dependencies,
python_requires=">=3.6",
)