diff options
author | 2018-09-18 21:44:47 +0200 | |
---|---|---|
committer | 2018-09-18 21:44:47 +0200 | |
commit | 53ad308cdb9e856e2bc13a0b0dc6bcc5f5c5af8a (patch) | |
tree | a02c83fcfc9edb5f61a23374ba91cb7610b76aff | |
parent | Omit `libpq`. (diff) |
Omit unneeded directories.
-rw-r--r-- | setup.py | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -3,8 +3,19 @@ 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.2.0', - packages=find_packages(), + packages=find_packages( + exclude=( + '**/static', + '**/tests' + ) + ), + python_requires='>= 3.6', install_requires=[ 'django>=2.1.1', 'djangorestframework>=3.8.2', |