Fix setup and revert MANIFEST.
This commit is contained in:
parent
3b47318ec3
commit
11a790e90a
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,3 @@
|
||||||
include LICENSE
|
include LICENSE
|
||||||
include README.rst
|
include README.rst
|
||||||
recursive-include oidc_provider *
|
recursive-include oidc_provider/templates *
|
7
setup.py
7
setup.py
|
@ -9,8 +9,11 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='django-oidc-provider',
|
name='django-oidc-provider',
|
||||||
version='0.0.0',
|
version='0.0.1',
|
||||||
packages=['oidc_provider'],
|
packages=[
|
||||||
|
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
|
||||||
|
'oidc_provider/lib/utils', 'oidc_provider/tests',
|
||||||
|
],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
description='OpenID Connect Provider implementation for Django.',
|
description='OpenID Connect Provider implementation for Django.',
|
||||||
|
|
Loading…
Reference in a new issue