diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/setup.py b/setup.py deleted file mode 100644 index a5eb9c38..00000000 --- a/setup.py +++ /dev/null @@ -1,49 +0,0 @@ -from setuptools import find_packages, setup - - -setup( - name='pysite', - url='https://pythondiscord.com', - description="Python Discord community website", - project_urls={ - 'Source code': 'https://gitlab.com/python-discord/projects/site' - }, - version='0.3.0', - packages=find_packages( - exclude=('**/static',) - ), - python_requires='>= 3.6', - install_requires=[ - 'django>=2.1.1', - 'djangorestframework>=3.9.0', - 'djangorestframework-bulk>=0.2.1', - 'django-crispy-forms>=1.7.2', - 'django-hosts>=3.0', - 'django-environ>=0.4.5', - 'django-filter>=2.0.0', - 'psycopg2-binary>=2.7.5' - ], - extras_require={ - 'deploy': [ - 'uwsgi>=2.0.17.1' - ], - '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' - ] - }, - entry_points={ - 'console_scripts': ( - 'psmgr = manage:main', - ) - } -) |