Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
pygwinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
gwinc
pygwinc
Commits
1024ccc8
Commit
1024ccc8
authored
6 years ago
by
Jameson Graef Rollins
Browse files
Options
Downloads
Patches
Plain Diff
setup.py cleanup
fix name, version and included files
parent
f84053c9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MANIFEST.in
+2
-8
2 additions, 8 deletions
MANIFEST.in
setup.py
+19
-17
19 additions, 17 deletions
setup.py
with
21 additions
and
25 deletions
MANIFEST.in
+
2
−
8
View file @
1024ccc8
include LICENSE
include CONTRIBUTIONS.md
include README.md
include DISTRIBUTION-README.md
include MANIFEST.in
include setup.cfg
include setup.cfg
include setup.py
include tox.ini
include tox.ini
include CONTRIBUTIONS.md
recursive-include *.py
recursive-include gwinc *.yaml
recursive-include gwinc *.py
recursive-include matlab *.m
recursive-include matlab *.m
recursive-include docs *
recursive-include docs *
This diff is collapsed.
Click to expand it.
setup.py
+
19
−
17
View file @
1024ccc8
#!/usr/bin/env python
#!/usr/bin/env python
3
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
from
__future__
import
division
,
print_function
,
unicode_literals
from
setuptools
import
find_packages
,
setup
from
setuptools
import
find_packages
,
setup
version
=
'
0.
9.5
'
version
=
'
0.
1
'
setup_args
=
dict
(
setup_args
=
dict
(
name
=
'
GWINC
'
,
name
=
'
gwinc
'
,
version
=
version
,
version
=
version
,
url
=
'
https://git.ligo.org/gwinc/pygwinc
'
,
url
=
'
https://git.ligo.org/gwinc/pygwinc
'
,
author
=
'
LIGO Laboratory
'
,
author
=
'
LIGO Laboratory
'
,
author_email
=
'
jrollins@ligo.caltech.edu
'
,
author_email
=
'
jrollins@ligo.caltech.edu
'
,
description
=
"
Gravitation Wave Interferometer Noise Calculator
"
,
description
=
"
Gravitation Wave Interferometer Noise Calculator
"
,
license
=
'
Copyright 2017 LIGO Laboratory
'
,
license
=
'
Copyright 2018 LIGO Laboratory
'
,
install_requires
=
[
keywords
=
'
Noise, LIGO, Gravitational Wave,
'
,
'
numpy
'
,
classifiers
=
[
'
scipy
'
,
'
matplotlib
'
,
],
packages
=
find_packages
(
exclude
=
[
'
docs
'
,],
),
include_package_data
=
True
,
zip_safe
=
True
,
keywords
=
'
Noise, LIGO, Gravitational Wave,
'
,
classifiers
=
[
'
Topic :: Scientific/Engineering
'
,
'
Topic :: Scientific/Engineering
'
,
'
Operating System :: OS Independent
'
,
'
Operating System :: OS Independent
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python
'
,
...
@@ -37,6 +26,19 @@ setup_args = dict(
...
@@ -37,6 +26,19 @@ setup_args = dict(
'
Programming Language :: Python :: 3.5
'
,
'
Programming Language :: Python :: 3.5
'
,
'
Programming Language :: Python :: 3.6
'
,
'
Programming Language :: Python :: 3.6
'
,
],
],
install_requires
=
[
'
numpy
'
,
'
scipy
'
,
'
matplotlib
'
,
],
packages
=
find_packages
(
exclude
=
[
'
docs
'
,],
),
include_package_data
=
True
,
zip_safe
=
True
,
)
)
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
...
...
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