|
1 | | -from setuptools import setup # type: ignore |
| 1 | +from setuptools import setup # type: ignore |
2 | 2 |
|
3 | 3 | setup( |
4 | | - name="JSON-log-formatter", |
5 | | - version="1.1", |
6 | | - license="MIT", |
7 | | - packages=["json_log_formatter"], |
8 | | - author="Marsel Mavletkulov", |
9 | | - url="https://github.com/marselester/json-log-formatter", |
10 | | - description="JSON log formatter", |
11 | | - long_description=open("README.rst").read(), |
| 4 | + name='JSON-log-formatter', |
| 5 | + version='1.1', |
| 6 | + license='MIT', |
| 7 | + packages=['json_log_formatter'], |
| 8 | + author='Marsel Mavletkulov', |
| 9 | + url='https://github.com/marselester/json-log-formatter', |
| 10 | + description='JSON log formatter', |
| 11 | + long_description=open('README.rst').read(), |
12 | 12 | classifiers=[ |
13 | | - "License :: OSI Approved :: MIT License", |
14 | | - "Intended Audience :: Developers", |
15 | | - "Operating System :: OS Independent", |
16 | | - "Programming Language :: Python", |
17 | | - "Programming Language :: Python :: 3", |
18 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
| 13 | + 'License :: OSI Approved :: MIT License', |
| 14 | + 'Intended Audience :: Developers', |
| 15 | + 'Operating System :: OS Independent', |
| 16 | + 'Programming Language :: Python', |
| 17 | + 'Programming Language :: Python :: 3', |
| 18 | + 'Topic :: Software Development :: Libraries :: Python Modules' |
19 | 19 | ], |
20 | 20 | ) |
0 commit comments