|
5 | 5 |
|
6 | 6 | from setuptools import find_packages, setup
|
7 | 7 |
|
8 |
| -# Read the contents of README file |
9 | 8 | with open('README.md', encoding='utf-8') as f:
|
10 | 9 | long_description = f.read()
|
11 | 10 |
|
12 | 11 | setup(
|
13 | 12 | name='gpt-po-translator',
|
14 |
| - use_scm_version=True, # Automatically fetch version from git tags |
15 |
| - setup_requires=['setuptools-scm==8.1.0'], # Ensure setuptools-scm is used during setup |
| 13 | + use_scm_version=True, |
| 14 | + setup_requires=['setuptools-scm==8.1.0'], |
16 | 15 | author='Bram Mittendorff',
|
17 | 16 | author_email='bram@pescheck.io',
|
18 | 17 | description='A CLI tool for translating .po files using GPT models.',
|
19 | 18 | long_description=long_description,
|
20 | 19 | long_description_content_type='text/markdown',
|
21 | 20 | url='https://github.com/pescheckit/python-gpt-po',
|
22 |
| - license='LICENSE', |
| 21 | + license='MIT', |
23 | 22 | packages=find_packages(),
|
24 | 23 | include_package_data=True,
|
25 | 24 | install_requires=[
|
|
35 | 34 | ],
|
36 | 35 | },
|
37 | 36 | classifiers=[
|
| 37 | + 'Development Status :: 4 - Beta', |
| 38 | + 'Intended Audience :: Developers', |
| 39 | + 'Intended Audience :: System Administrators', |
| 40 | + 'Topic :: Software Development :: Internationalization', |
| 41 | + 'Topic :: Software Development :: Localization', |
| 42 | + 'Topic :: Text Processing :: Linguistic', |
| 43 | + 'Operating System :: OS Independent', |
38 | 44 | 'License :: OSI Approved :: MIT License',
|
39 | 45 | 'Programming Language :: Python :: 3',
|
40 | 46 | 'Programming Language :: Python :: 3.8',
|
41 |
| - # Add additional classifiers as needed |
| 47 | + 'Programming Language :: Python :: 3.9', |
| 48 | + 'Programming Language :: Python :: 3.10', |
| 49 | + 'Programming Language :: Python :: 3.11', |
| 50 | + 'Programming Language :: Python :: 3.12', |
| 51 | + 'Programming Language :: Python :: 3 :: Only', |
| 52 | + 'Natural Language :: English', |
| 53 | + 'Natural Language :: Dutch', |
| 54 | + 'Environment :: Console', |
| 55 | + 'Typing :: Typed' |
42 | 56 | ],
|
| 57 | + python_requires='>=3.8', |
43 | 58 | )
|
0 commit comments