File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change 1- __version__ = '0.2.10'
Original file line number Diff line number Diff line change 1+ build
Original file line number Diff line number Diff line change 11import setuptools
22import os
33
4- import inotify
5-
6- APP_PATH = os .path .dirname (inotify .__file__ )
7-
8- with open (os .path .join (APP_PATH , 'resources' , 'README.rst' )) as f :
4+ with open (os .path .join ('inotify' , 'resources' , 'README.rst' )) as f :
95 _LONG_DESCRIPTION = f .read ()
106
11- with open (os .path .join (APP_PATH , 'resources' , 'requirements.txt' )) as f :
7+ with open (os .path .join ('inotify' , 'resources' , 'requirements.txt' )) as f :
128 _INSTALL_REQUIRES = list (map (lambda s : s .strip (), f .readlines ()))
139
1410_DESCRIPTION = \
1511 "An adapter to Linux kernel support for inotify directory-watching."
1612
1713setuptools .setup (
1814 name = 'inotify' ,
19- version = inotify . __version__ ,
15+ version = '0.2.10' ,
2016 description = _DESCRIPTION ,
2117 long_description = _LONG_DESCRIPTION ,
2218 classifiers = [
3632 'resources/requirements.txt' ,
3733 ]
3834 },
39- test_suite = 'nose.collector' ,
40- tests_require = ['nose' ],
4135)
You can’t perform that action at this time.
0 commit comments