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

enable source distribution packaging #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ build
.project
.pydevproject
.cproject
*.py[co]
*.py[co]
MANIFEST
dist
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include README.rst
include VERSION_INFO
include genversion.sh
recursive-include tests *
recursive-include examples *.py
recursive-include docs *
recursive-include src *
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
print version

setup( name = 'pyxrootd',
version = version,
version = version.strip(),
author = 'XRootD Developers',
author_email = 'xrootd-dev@slac.stanford.edu',
url = 'http://xrootd.org',
Expand Down