Compare commits

..

No commits in common. "773390b09f4432cfa283e5278b7b43983adc290c" and "a0c4f2cad3af5a95b5ecf0cd427459636fecec70" have entirely different histories.

3 changed files with 11 additions and 5 deletions

View File

@ -1,4 +1,3 @@
exclude
include LICENSE
include Readme.rst
include Pipfile

View File

@ -0,0 +1,8 @@
# Config options for coverage
# Docs: https://coverage.readthedocs.io/en/latest/config.html
[coverage:run]
source = .
[coverage:report]
show_missing = True

7
django_lostplaces/setup.py → setup.py Executable file → Normal file
View File

@ -1,9 +1,9 @@
#!/usr/bin/env python3
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('../Readme.md') as f:
with open('Readme.md') as f:
readme = f.read()
setup(
@ -31,6 +31,5 @@ setup(
'django-widget-tweaks',
'django-taggit'
],
include_package_data=True,
license='MIT'
include_package_data=True
)