-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
32 lines (27 loc) · 909 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
import os
import setuptools
from neispy import __version__
requirements = []
path = os.path.dirname(os.path.realpath(__file__)).replace("\\", "/")
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setuptools.setup(
name="neispy",
version=__version__,
license="MIT",
author="Ryu ju heon",
author_email="[email protected]",
description="open-neis-api wrapping with aiohttp",
long_description=open("README.md", "rt", encoding="UTF8").read(),
long_description_content_type="text/markdown",
url="https://github.com/SaidBySolo/neispy",
package_data={"neispy": ["py.typed"]},
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
# 패키지에 대한 태그
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)