Skip to content

Commit

Permalink
remove nose in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldelucena committed Aug 17, 2024
1 parent e8b1fd0 commit 391b1d6
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ def read(*paths):

version = re.search("__version__ = '(.+)'", read('funq/__init__.py')).group(1)

# nose n'est actuellement pas requis pour ce module
# mais tres utile pour cadrer les tests.
install_requires = ['nose']

setup(
name="funq",
author="Julien Pagès",
Expand All @@ -30,10 +26,5 @@ def read(*paths):
version=version,
packages=find_packages(),
zip_safe=False,
test_suite='funq.tests.create_test_suite',
install_requires=install_requires,
package_data={'funq': ['aliases-gkits.conf']},
entry_points={
'nose.plugins.0.10': ['funq = funq.noseplugin:FunqPlugin']
},
test_suite="tests",
)

0 comments on commit 391b1d6

Please sign in to comment.