You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
567 B
20 lines
567 B
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()
|
|
)
|