|
4 | 4 |
|
5 | 5 | from setuptools import setup, find_namespace_packages |
6 | 6 |
|
7 | | -with open('README.rst') as readme_file: |
| 7 | +with open('README.md') as readme_file: |
8 | 8 | readme = readme_file.read() |
9 | 9 |
|
10 | | -with open('HISTORY.rst') as history_file: |
| 10 | +with open('HISTORY.md') as history_file: |
11 | 11 | history = history_file.read() |
12 | 12 |
|
13 | 13 | requirements = [ ] |
|
17 | 17 | test_requirements = ['pytest>=3', ] |
18 | 18 |
|
19 | 19 | setup( |
20 | | - author="Vladyslav Fenchak", |
21 | | - author_email='vladyslav.fenchak@clariteia.com', |
22 | | - python_requires='>=3.5', |
| 20 | + author="Andrea Mucci", |
| 21 | + author_email='andrea@clariteia.com', |
| 22 | + python_requires='>=3.7', |
23 | 23 | classifiers=[ |
24 | 24 | 'Development Status :: 2 - Pre-Alpha', |
25 | 25 | 'Intended Audience :: Developers', |
26 | 26 | 'Natural Language :: English', |
27 | 27 | 'Programming Language :: Python :: 3', |
28 | | - 'Programming Language :: Python :: 3.5', |
29 | | - 'Programming Language :: Python :: 3.6', |
30 | 28 | 'Programming Language :: Python :: 3.7', |
31 | 29 | 'Programming Language :: Python :: 3.8', |
| 30 | + 'Programming Language :: Python :: 3.9', |
32 | 31 | ], |
33 | 32 | description="Minos Boilerplate contains all the boilerplate you need to create a Minos Python package.", |
34 | 33 | install_requires=requirements, |
| 34 | + long_description_content_type="text/markdown", |
35 | 35 | long_description=readme + '\n\n' + history, |
36 | 36 | include_package_data=True, |
37 | 37 | keywords='api_gateway', |
|
0 commit comments