aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-09-16 23:10:13 +0200
committerGravatar Johannes Christ <[email protected]>2018-09-16 23:10:13 +0200
commitd8628581535d7879ebd62b2b19aad8a32502c2ae (patch)
treeba9bfcbb3a9b19610e4e12ec19fc72eecb7ef514 /setup.py
parentFix typo. (diff)
Back to the roots.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 00000000..66b3b4d8
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,33 @@
+from setuptools import find_packages, setup
+
+
+setup(
+ name='pysite',
+ version='0.2.0',
+ packages=find_packages(),
+ install_requires=[
+ 'django>=2.1.1',
+ 'djangorestframework>=3.8.2',
+ 'djangorestframework-bulk>=0.2.1',
+ 'django-hosts>=3.0',
+ 'django-environ>=0.4.5'
+ ],
+ extras_require={
+ 'deploy': [
+ 'gunicorn>=19.9.0',
+ ],
+ 'lint': [
+ 'flake8>=3.5.0',
+ 'flake8-bandit>=1.0.2',
+ 'flake8-bugbear>=18.8.0',
+ 'flake8-import-order>=0.18',
+ 'flake8-string-format>=0.2.3',
+ 'flake8-tidy-imports>=1.1.0',
+ 'pep8-naming>=0.7.0',
+ 'mccabe>=0.6.1'
+ ],
+ 'test': [
+ 'coverage>=4.5.1'
+ ]
+ }
+)