-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (20 loc) · 873 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (20 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
python_classifiers = ['Programming Language :: Python :: %s' % version for version in ['3.12', '3.13', '3.14']]
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='pyasyncore',
version='1.0.5',
description='Make asyncore available for Python 3.12 onwards',
long_description=readme,
long_description_content_type='text/markdown',
author='Simon Robinson',
author_email='simon@robinson.ac',
url='https://github.com/simonrob/pyasyncore',
platforms='any',
packages=['asyncore'],
license='Python Software Foundation License Version 2',
classifiers=['Topic :: Software Development :: Libraries',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Python Software Foundation License'] + python_classifiers,
)