Commit 4697c7308e9b430a73f5c2c21a015b65d160b9c3
1 parent
25a6f2db
Exists in
dev
minor
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
setup.py
| @@ -7,19 +7,19 @@ from setuptools import setup, find_packages | @@ -7,19 +7,19 @@ from setuptools import setup, find_packages | ||
| 7 | from perguntations import (__author__, __license__, | 7 | from perguntations import (__author__, __license__, |
| 8 | APP_NAME, APP_VERSION, APP_DESCRIPTION) | 8 | APP_NAME, APP_VERSION, APP_DESCRIPTION) |
| 9 | 9 | ||
| 10 | -with open("README.md", "r") as f: | 10 | +with open('README.md', 'r') as f: |
| 11 | long_description = f.read() | 11 | long_description = f.read() |
| 12 | 12 | ||
| 13 | setup( | 13 | setup( |
| 14 | name=APP_NAME, | 14 | name=APP_NAME, |
| 15 | version=APP_VERSION, | 15 | version=APP_VERSION, |
| 16 | author=__author__, | 16 | author=__author__, |
| 17 | - author_email="mjsb@uevora.pt", | 17 | + author_email='mjsb@uevora.pt', |
| 18 | license=__license__, | 18 | license=__license__, |
| 19 | description=APP_DESCRIPTION.split('\n')[0], | 19 | description=APP_DESCRIPTION.split('\n')[0], |
| 20 | long_description=APP_DESCRIPTION, | 20 | long_description=APP_DESCRIPTION, |
| 21 | - long_description_content_type="text/markdown", | ||
| 22 | - url="https://git.xdi.uevora.pt/mjsb/perguntations.git", | 21 | + long_description_content_type='text/markdown', |
| 22 | + url='https://git.xdi.uevora.pt/mjsb/perguntations.git', | ||
| 23 | packages=find_packages(), | 23 | packages=find_packages(), |
| 24 | include_package_data=True, # install files from MANIFEST.in | 24 | include_package_data=True, # install files from MANIFEST.in |
| 25 | python_requires='>=3.9', | 25 | python_requires='>=3.9', |
-
mentioned in commit cc91e4c034aa4336bad33042438dd98d4f20d958