Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
Update packaging (#199)
Browse files Browse the repository at this point in the history
* Exclude extra from wheel

* Create setup cfg

* Update manifest
  • Loading branch information
annatisch authored Jul 5, 2020
1 parent 7289ce8 commit 469216e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
include README.md
include changelog.md
include LICENSE.txt
include azure/__init__.py
recursive-include doc *.bat
recursive-include doc *.py
recursive-include doc *.rst
recursive-include doc Makefile
recursive-include test *.py
recursive-include test *.py
recursive-include samples *.py
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=setuptools.find_packages(exclude=['test', 'test.*', 'azure']),
packages=setuptools.find_packages(exclude=['test', 'test.*', 'azure', 'samples', 'samples.*', 'doc']),
extras_require={
':python_version<"3.0"': ['azure-nspkg'],
},
Expand Down

0 comments on commit 469216e

Please sign in to comment.