Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pycapo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
Capo Implementations
pycapo
Commits
291b38d8
Commit
291b38d8
authored
5 years ago
by
Daniel Lyons
Browse files
Options
Downloads
Patches
Plain Diff
Fixing the dependencies in setup.py so as not to annoy Conda
parent
115b8643
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MANIFEST.in
+2
-2
2 additions, 2 deletions
MANIFEST.in
setup.py
+3
-7
3 additions, 7 deletions
setup.py
with
5 additions
and
9 deletions
MANIFEST.in
+
2
−
2
View file @
291b38d8
include *.txt *.ini *.cfg
*.rst *.wsgi *.sh
*.spec
include *.txt *.ini *.cfg *.spec
recursive-include pycapo *.py
recursive-include doc *
This diff is collapsed.
Click to expand it.
setup.py
+
3
−
7
View file @
291b38d8
...
...
@@ -12,10 +12,6 @@ with open(os.path.join(HERE, 'CHANGES.txt')) as f:
with
open
(
os
.
path
.
join
(
HERE
,
NAME
,
'
_version.py
'
))
as
f
:
VERSION
=
f
.
readlines
()[
-
1
].
split
()[
-
1
].
strip
(
"
\"
'"
)
INST_REQUIRES
=
[]
TEST_REQUIRES
=
[
'
pytest==3.0.5
'
]
SETUP_REQUIRES
=
[
'
pytest-runner==2.9
'
]
setup
(
name
=
NAME
,
version
=
VERSION
,
description
=
'
CAPO (CASA, Archive, and Pipeline Options) for Python
'
,
...
...
@@ -44,9 +40,9 @@ setup(name=NAME,
include_package_data
=
True
,
zip_safe
=
False
,
test_suite
=
'
pycapo.tests
'
,
install_requires
=
INST_REQUIRES
,
tests_require
=
TEST_REQUIRES
,
setup_requires
=
SETUP_REQUIRES
,
install_requires
=
[]
,
tests_require
=
[
'
pytest
'
]
,
setup_requires
=
[
'
pytest-runner
'
,
'
pytest
'
]
,
entry_points
=
{
'
console_scripts
'
:
[
'
pycapo = pycapo.commands:pycapo
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment