|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 |
|
3 | | -with open("README.md", "r") as readme_file: |
| 3 | + |
| 4 | +with open('README.md', 'r', encoding='utf8') as readme_file: |
4 | 5 | readme = readme_file.read() |
5 | 6 |
|
6 | 7 | requirements = [] |
7 | 8 |
|
8 | 9 | setup( |
9 | | - name="cbfa", |
10 | | - version="0.0.1", |
11 | | - author="Evgeniy Blinov", |
12 | | - author_email="zheni-b@yandex.ru", |
13 | | - description="Class-based views for the FastAPI", |
| 10 | + name='cbfa', |
| 11 | + version='0.0.2', |
| 12 | + author='Evgeniy Blinov', |
| 13 | + author_email='zheni-b@yandex.ru', |
| 14 | + description='Class-based views for the FastAPI', |
14 | 15 | long_description=readme, |
15 | | - long_description_content_type="text/markdown", |
16 | | - url="https://github.com/pomponchik/cbfa", |
17 | | - packages=find_packages(), |
| 16 | + long_description_content_type='text/markdown', |
| 17 | + url='https://github.com/pomponchik/cbfa', |
| 18 | + packages=find_packages(exclude='tests'), |
18 | 19 | install_requires=requirements, |
19 | 20 | classifiers=[ |
20 | | - "Programming Language :: Python :: 3.8", |
21 | | - "License :: OSI Approved :: MIT License", |
| 21 | + 'Operating System :: MacOS :: MacOS X', |
| 22 | + 'Operating System :: Microsoft :: Windows', |
| 23 | + 'Operating System :: POSIX', |
| 24 | + 'Operating System :: POSIX :: Linux', |
| 25 | + 'Programming Language :: Python', |
| 26 | + 'Programming Language :: Python :: 3.7', |
| 27 | + 'Programming Language :: Python :: 3.8', |
| 28 | + 'Programming Language :: Python :: 3.9', |
| 29 | + 'Programming Language :: Python :: 3.10', |
| 30 | + 'Programming Language :: Python :: 3.11', |
| 31 | + 'License :: OSI Approved :: MIT License', |
| 32 | + 'Intended Audience :: Developers', |
| 33 | + 'Topic :: Software Development :: Libraries', |
| 34 | + 'Framework :: FastAPI', |
22 | 35 | ], |
23 | 36 | ) |
0 commit comments