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
4c0e8717
Commit
4c0e8717
authored
6 years ago
by
Lee McCuller
Committed by
Lee McCuller
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
add base setup.py
parent
09e97cd1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!9
Setuppy
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+43
-0
43 additions, 0 deletions
setup.py
with
43 additions
and
0 deletions
setup.py
0 → 100755
+
43
−
0
View file @
4c0e8717
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from
__future__
import
division
,
print_function
,
unicode_literals
from
setuptools
import
find_packages
,
setup
version
=
'
0.9.5
'
setup_args
=
dict
(
name
=
'
GWINC
'
,
version
=
version
,
url
=
'
https://github.com/mccullerlp/iirrational
'
,
author
=
'
LIGO Laboratory
'
,
author_email
=
'
jrollins@ligo.caltech.edu
'
,
description
=
"
Gravitation Wave Interferometer Noice Calculator
"
,
license
=
'
Copyright 2017 LIGO Laboratory
'
,
install_requires
=
[
'
numpy
'
,
'
scipy
'
,
'
matplotlib
'
,
],
packages
=
find_packages
(
exclude
=
[
'
docs
'
,],
),
include_package_data
=
True
,
zip_safe
=
True
,
keywords
=
'
Noise, LIGO, Gravitational Wave,
'
,
classifiers
=
[
'
Topic :: Scientific/Engineering
'
,
'
Operating System :: OS Independent
'
,
'
Programming Language :: Python
'
,
'
Programming Language :: Python :: 2
'
,
'
Programming Language :: Python :: 2.7
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.4
'
,
'
Programming Language :: Python :: 3.5
'
,
'
Programming Language :: Python :: 3.6
'
,
],
)
if
__name__
==
"
__main__
"
:
setup
(
**
setup_args
)
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