Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
X
xml_marshaller
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
xml_marshaller
Commits
80572442
Commit
80572442
authored
Oct 28, 2010
by
Nicolas Delaby
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify setup.py according folder structure modifications
parent
4440e3fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
5 deletions
+6
-5
MANIFEST.in
MANIFEST.in
+2
-0
setup.py
setup.py
+4
-5
No files found.
MANIFEST.in
0 → 100644
View file @
80572442
recursive-include src *.xsd
setup.py
View file @
80572442
...
...
@@ -9,7 +9,7 @@ def read(name):
long_description
=
(
read
(
'README.txt'
)
+
'
\
n
\
n
'
+
+
'
\
n
'
+
read
(
'CHANGES.txt'
)
)
...
...
@@ -29,11 +29,10 @@ setup(name=name,
maintainer_email
=
'nicolas@nexedi.com'
,
url
=
'http://www.python.org/community/sigs/current/xml-sig/'
,
license
=
'Python License (CNRI Python License)'
,
packages
=
find_packages
(
exclude
=
[
'ez_setup'
,
'examples'
,
'tests'
]),
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
include_package_data
=
True
,
zip_safe
=
False
,
install_requires
=
[
'lxml'
,],
entry_points
=
"""
# -*- Entry points: -*-
"""
,
test_suite
=
'xml_marshaller'
,
)
Write
Preview
Markdown
is supported
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