aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..5065fcb
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,34 @@
+from setuptools import setup
+
+with open('drutils/version.py') as f:
+ _loc = {}
+ exec(f.read(), _loc, _loc)
+ version = _loc['VERSION']
+
+dev_requirements = [
+ "pylint", "aiounittest", "tox", "pytest"
+]
+
+with open('README.md') as f:
+ readme = f.read()
+
+if not version:
+ raise RuntimeError('version is not set in drutils/version.py')
+
+setup(
+ name="drutils",
+ author="romangraef",
+ url="https://github.com/romangraef/drutils",
+ version=str(version),
+ install_requires=[],
+ long_description=readme,
+ setup_requires=[],
+ tests_require=dev_requirements,
+ dependency_links=[''],
+ license="MIT",
+ packages=['drutils'],
+ description="discord.py utils i found myself using often",
+ classifiers=[
+ 'Topic :: Utilities',
+ ]
+)