Improve setup.py for next time
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,3 +4,5 @@ htmlcov
|
|||||||
*.egg-info
|
*.egg-info
|
||||||
.tox
|
.tox
|
||||||
example.db
|
example.db
|
||||||
|
/dist
|
||||||
|
/build
|
||||||
|
|||||||
4
setup.py
4
setup.py
@@ -14,8 +14,8 @@ setup(
|
|||||||
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
|
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
|
||||||
open(os.path.join(here, 'CHANGES')).read(),
|
open(os.path.join(here, 'CHANGES')).read(),
|
||||||
license='LPGL, see LICENSE file.',
|
license='LPGL, see LICENSE file.',
|
||||||
install_requires=['Django', 'pillow'],
|
install_requires=['Django>=1.11', 'pillow'],
|
||||||
packages=find_packages(),
|
packages=find_packages(exclude=['example_project*', 'tests']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
|||||||
Reference in New Issue
Block a user