Skip to content

Commit

Permalink
chore(setup): edit serup
Browse files Browse the repository at this point in the history
  • Loading branch information
SaidBySolo committed Oct 1, 2021
1 parent fab8c42 commit c9dae44
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import os

import setuptools

requirements = []

path = os.path.dirname(os.path.realpath(__file__)).replace("\\", "/")
with open("requirements.txt") as f:
requirements = f.read().splitlines()

Expand All @@ -14,11 +18,11 @@
long_description=open("README.md", "rt", encoding="UTF8").read(),
long_description_content_type="text/markdown",
url="https://github.com/SaidBySolo/neispy",
package_data={"koreanbots": ["py.typed"]},
packages=setuptools.find_packages(),
install_requires=requirements,
classifiers=[
# 패키지에 대한 태그
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit c9dae44

Please sign in to comment.