Improve setup.py for next time

This commit is contained in:
Sebastien Corbin
2020-04-18 21:01:55 +02:00
parent 3f5d877b6a
commit 7601258ea8
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@@ -4,3 +4,5 @@ htmlcov
*.egg-info
.tox
example.db
/dist
/build

View File

@@ -14,8 +14,8 @@ setup(
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
open(os.path.join(here, 'CHANGES')).read(),
license='LPGL, see LICENSE file.',
install_requires=['Django', 'pillow'],
packages=find_packages(),
install_requires=['Django>=1.11', 'pillow'],
packages=find_packages(exclude=['example_project*', 'tests']),
include_package_data=True,
zip_safe=False,
classifiers=[