Skip to content

Commit f1253cc

Browse files
committed
setup.py: Update setup logic
Testing directly via setuptools is no longer functional.
1 parent a5b3304 commit f1253cc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
APP_PATH = os.path.dirname(inotify.__file__)
77

8-
with open(os.path.join(APP_PATH, 'resources', 'README.rst')) as f:
8+
with open(os.path.join('inotify', 'resources', 'README.rst')) as f:
99
_LONG_DESCRIPTION = f.read()
1010

11-
with open(os.path.join(APP_PATH, 'resources', 'requirements.txt')) as f:
11+
with open(os.path.join('inotify', 'resources', 'requirements.txt')) as f:
1212
_INSTALL_REQUIRES = list(map(lambda s: s.strip(), f.readlines()))
1313

1414
_DESCRIPTION = \
@@ -36,6 +36,4 @@
3636
'resources/requirements.txt',
3737
]
3838
},
39-
test_suite='nose.collector',
40-
tests_require=['nose'],
4139
)

0 commit comments

Comments
 (0)