Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Antoine Augusti
Validata Core
Commits
51f1de8d
Commit
51f1de8d
authored
Jun 17, 2019
by
Christophe Benz
Browse files
Use find_packages to include sub-packages
parent
4e62226c
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
51f1de8d
...
...
@@ -3,7 +3,7 @@
from
pathlib
import
Path
from
setuptools
import
setup
from
setuptools
import
find_packages
,
setup
# Gets the long description from the README.md file
readme_filepath
=
Path
(
__file__
).
parent
/
'README.md'
...
...
@@ -12,7 +12,7 @@ with readme_filepath.open('rt', encoding='utf-8') as fd_in:
setup
(
name
=
'validata_core'
,
version
=
'0.3.
3
'
,
version
=
'0.3.
4
'
,
description
=
"Validata Core library"
,
long_description
=
LONG_DESCRIPTION
,
...
...
@@ -47,7 +47,7 @@ setup(
'Programming Language :: Python :: 3'
,
],
packages
=
[
'validata_core'
]
,
packages
=
find_packages
()
,
include_package_data
=
True
,
package_data
=
{
'validata_core'
:
[
'validata_spec.json'
],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment