aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorGravatar mbaruh <[email protected]>2021-11-04 23:22:44 +0200
committerGravatar mbaruh <[email protected]>2021-11-04 23:22:44 +0200
commit574be7da67c52294f4ddff38a40951a20a6f6d99 (patch)
tree7a1c8368de1a41558c10ad306d1b683dabaa8fdc /setup.py
parentInitial commit (diff)
Setup attempt
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 00000000..86ce4964
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+from setuptools import find_packages, setup
+
+setup(
+ name='bot-core',
+ packages=find_packages(include=['botcore']),
+ version='0.1.0',
+ description='Bot-Core provides the core functionality and utilities for the bots of the Python Discord community',
+ author='Python Discord',
+ license='MIT',
+ install_requires=["discord.py=^1.7.2"],
+ tests_require=['pytest~=6.2.4'],
+ test_suite='tests',
+)