We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5b3304 commit f1253ccCopy full SHA for f1253cc
setup.py
@@ -5,10 +5,10 @@
5
6
APP_PATH = os.path.dirname(inotify.__file__)
7
8
-with open(os.path.join(APP_PATH, 'resources', 'README.rst')) as f:
+with open(os.path.join('inotify', 'resources', 'README.rst')) as f:
9
_LONG_DESCRIPTION = f.read()
10
11
-with open(os.path.join(APP_PATH, 'resources', 'requirements.txt')) as f:
+with open(os.path.join('inotify', 'resources', 'requirements.txt')) as f:
12
_INSTALL_REQUIRES = list(map(lambda s: s.strip(), f.readlines()))
13
14
_DESCRIPTION = \
@@ -36,6 +36,4 @@
36
'resources/requirements.txt',
37
]
38
},
39
- test_suite='nose.collector',
40
- tests_require=['nose'],
41
)
0 commit comments