Skip to content

Commit

Permalink
[fix] Removed /tests dir from python package
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Jun 17, 2020
1 parent 489686b commit df5a28e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ include LICENSE README.rst requirements.txt
recursive-include netjsonconfig *
recursive-exclude * *.pyc *.swp
recursive-exclude * __pycache__
recursive-exclude tests *
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ def get_install_requires():
version=get_version(),
description=description,
long_description=open('README.rst').read(),
author='Federico Capoano (nemesisdesign)',
author_email='f.capoano@cineca.it',
author='Federico Capoano',
author_email='federico.capoano@gmail.com',
license='GPL3',
url='http://netjsonconfig.openwisp.org',
download_url='https://github.com/openwisp/netjsonconfig/releases',
keywords=['openwrt', 'openwisp', 'netjson', 'networking'],
packages=find_packages(exclude=['tests', 'tests.*', 'docs', 'docs.*']),
packages=find_packages(exclude=['tests*', 'docs*']),
include_package_data=True,
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit df5a28e

Please sign in to comment.