Browse Source

install fix

main
gsd 1 year ago
parent
commit
5d117edfb6
  1. 20
      setup.py

20
setup.py

@ -0,0 +1,20 @@
from setuptools import setup, find_packages
from io import open
def read(filename):
with open(filename, "r", encoding="utf-8") as file:
return file.read()
setup(name="DonationAlertsAPI",
version="2.1",
description="Module for simple work with API Donation Alerts",
long_description=read("README.md"),
long_description_content_type="text/markdown",
author="Fsoky",
author_email="[email protected]",
url="https://github.com/Fsoky/DonationAlertsAPI",
keywords="api donation donationalerts python",
packages=find_packages()
)
Loading…
Cancel
Save