Skip to content

Commit 1f2112c

Browse files
author
Augustine Dunn
committed
Added GPL materials.
1 parent 6b4422a commit 1f2112c

File tree

6 files changed

+731
-2
lines changed

6 files changed

+731
-2
lines changed

LICENSE.txt

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
author='Augustine Dunn',
2727
author_email='[email protected]',
2828
url='https://github.com/xguse/',
29-
license='',
29+
license='GPL',
3030
packages=find_packages('src'),
3131
package_dir = {'': 'src'},include_package_data=True,
3232
zip_safe=False,

src/blacktie/scripts/blacktie_pipeline.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#*****************************************************************************
2+
# blacktie_pipeline.py (part of the blacktie package)
3+
#
4+
# (c) 2013 - Augustine Dunn
5+
# James Laboratory
6+
# Department of Biochemistry and Molecular Biology
7+
# University of California Irvine
8+
9+
#
10+
# Licenced under the GNU General Public License 2.0 license.
11+
#******************************************************************************
12+
113
"""
214
####################
315
blacktie_pipeline.py

src/blacktie/utils/errors.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#*****************************************************************************
2+
# errors.py (part of the blacktie package)
3+
#
4+
# (c) 2013 - Augustine Dunn
5+
# James Laboratory
6+
# Department of Biochemistry and Molecular Biology
7+
# University of California Irvine
8+
9+
#
10+
# Licenced under the GNU General Public License 2.0 license.
11+
#******************************************************************************
12+
113
"""
214
####################
315
errors.py
@@ -7,7 +19,7 @@
719
import warnings
820

921
class BlacktieError(StandardError):
10-
"""Base class for exceptions in the rSeq package."""
22+
"""Base class for exceptions in the blacktie package."""
1123
pass
1224

1325

src/blacktie/utils/externals.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
#*****************************************************************************
2+
# externals.py (part of the blacktie package)
3+
#
4+
# (c) 2013 - Augustine Dunn
5+
# James Laboratory
6+
# Department of Biochemistry and Molecular Biology
7+
# University of California Irvine
8+
9+
#
10+
# Licenced under the GNU General Public License 2.0 license.
11+
#******************************************************************************
12+
113
"""
214
####################
315
externals.py

src/blacktie/utils/misc.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
#*****************************************************************************
2+
# misc.py (part of the blacktie package)
3+
#
4+
# (c) 2013 - Augustine Dunn
5+
# James Laboratory
6+
# Department of Biochemistry and Molecular Biology
7+
# University of California Irvine
8+
9+
#
10+
# Licenced under the GNU General Public License 2.0 license.
11+
#******************************************************************************
12+
13+
"""
14+
####################
15+
misc.py
16+
####################
17+
Code facilitating random aspects of this package.
18+
"""
19+
120
import sys
221
import inspect
322
import smtplib

0 commit comments

Comments
 (0)