-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
65 lines (64 loc) · 2.55 KB
/
setup.py
File metadata and controls
65 lines (64 loc) · 2.55 KB
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
55
56
57
58
59
60
61
62
63
64
65
import codecs
from setuptools import setup, find_packages
setup(
name='fifofile',
version='1.0.0',
description='FiFoFile is a class that makes it easy to read and write lines in fifo files (named pipes)',
url='https://github.com/rabuchaim/fifofile',
author='Ricardo Abuchaim',
author_email='[email protected]',
maintainer='Ricardo Abuchaim',
maintainer_email='[email protected]',
project_urls={
"Issue Tracker": "https://github.com/rabuchaim/fifofile/issues",
"Source code": "https://github.com/rabuchaim/fifofile",
},
bugtrack_url='https://github.com/rabuchaim/fifofile/issues',
license='MIT',
keywords=['fifo','fifofile','fifo file','named','named pipes','named pipe','epoll','select','poll','polling','syslog-ng','syslog','rsyslog'],
packages=['fifofile'],
py_modules=['fifofile', 'fifofile'],
package_dir = {'fifofile': 'fifofile'},
include_package_data=True,
zip_safe = False,
package_data={
'fifofile': [
'README.md',
'LICENSE',
'fifofile/fifofile.py',
'fifofile/__init__.py',
],
},
python_requires=">=3.0",
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Security',
'Topic :: Internet',
'Topic :: Scientific/Engineering',
'Topic :: System :: Monitoring',
'Topic :: System :: Systems Administration',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 11',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
],
long_description=codecs.open("README.md","r","utf-8").read(),
long_description_content_type='text/markdown',
)