Skip to content

Commit

Permalink
Add setuptools configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
renbinden committed Jan 27, 2021
1 parent 0aff462 commit 7f6dbbb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()

setup(
name="sooch",
version="2.0.0",
description="Sooch Discord bot",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/plaaosert/sooch-rewrite/",
author="Plaaosert and Sooch Devs",
packages=find_packages(),
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
python_requires=">=3.7"
)
Empty file added sooch/__init__.py
Empty file.

0 comments on commit 7f6dbbb

Please sign in to comment.