-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·54 lines (51 loc) · 2.14 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# coding: UTF-8
from setuptools import find_packages, setup
with open('README.md') as fp:
readme = fp.read()
setup(
name='linux_aio',
version='0.4.1',
author='Byeonghoon Yoo',
author_email='bh322yoo@gmail.com',
description='Linux aio ABI wrapper',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/isac322/linux_aio',
packages=find_packages(exclude=('test',)),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: C',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Stackless',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System',
'Topic :: System :: Filesystems',
'Topic :: System :: Operating System',
'Topic :: System :: Operating System Kernels',
'Topic :: System :: Operating System Kernels :: Linux',
],
license='LGPLv3+',
keywords='Linux AIO ABI API wrapper',
python_requires='>=3.4',
provides=['linux_aio'],
platforms='Linux',
install_requires=['linux_aio_bind'],
package_data={
'linux_aio': ['py.typed'],
}
)