-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (32 loc) · 983 Bytes
/
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
from setuptools import setup
setup(
name='inotifier',
version='0.1',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Topic :: System :: Filesystems',
'Topic :: System :: Operating System Kernels :: Linux',
'Programming Language :: Python :: 3'
],
packages=['tests', 'inotifier'],
url='https://github.com/GabrielC101/inotifier',
license='Apache2',
author='Gabriel Curio',
install_requires=['inotify'],
extras_requirements={
'examples':
[
'inotifier.examples',
'inotifier.examples.printer.printer',
'inotifier.examples.renamer.renamer'
]
},
extras_require={
"examples": ["psutil"],
},
description='Inotify Event Handler'
)