Skip to content

Commit 84cd440

Browse files
committed
Switch BRIDGE package metadata to MIT
1 parent 8a82fde commit 84cd440

2 files changed

Lines changed: 22 additions & 107 deletions

File tree

LICENSE

Lines changed: 21 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -1,106 +1,21 @@
1-
Apache License
2-
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
4-
5-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6-
7-
1. Definitions.
8-
9-
"License" shall mean the terms and conditions for use, reproduction, and
10-
distribution as defined by Sections 1 through 9 of this document.
11-
12-
"Licensor" shall mean the copyright owner or entity authorized by the
13-
copyright owner that is granting the License.
14-
15-
"Legal Entity" shall mean the union of the acting entity and all other
16-
entities that control, are controlled by, or are under common control with
17-
that entity. For the purposes of this definition, "control" means (i) the
18-
power, direct or indirect, to cause the direction or management of such
19-
entity, whether by contract or otherwise, or (ii) ownership of fifty percent
20-
(50%) or more of the outstanding shares, or (iii) beneficial ownership of
21-
such entity.
22-
23-
"You" (or "Your") shall mean an individual or Legal Entity exercising
24-
permissions granted by this License.
25-
26-
"Source" form shall mean the preferred form for making modifications,
27-
including but not limited to software source code, documentation source, and
28-
configuration files.
29-
30-
"Object" form shall mean any form resulting from mechanical transformation or
31-
translation of a Source form, including but not limited to compiled object
32-
code, generated documentation, and conversions to other media types.
33-
34-
"Work" shall mean the work of authorship, whether in Source or Object form,
35-
made available under the License, as indicated by a copyright notice that is
36-
included in or attached to the work.
37-
38-
"Derivative Works" shall mean any work, whether in Source or Object form,
39-
that is based on (or derived from) the Work and for which the editorial
40-
revisions, annotations, elaborations, or other modifications represent, as a
41-
whole, an original work of authorship.
42-
43-
"Contribution" shall mean any work of authorship, including the original
44-
version of the Work and any modifications or additions to that Work or
45-
Derivative Works, that is intentionally submitted to Licensor for inclusion
46-
in the Work by the copyright owner or by an individual or Legal Entity
47-
authorized to submit on behalf of the copyright owner.
48-
49-
"Contributor" shall mean Licensor and any individual or Legal Entity on
50-
behalf of whom a Contribution has been received by Licensor and subsequently
51-
incorporated within the Work.
52-
53-
2. Grant of Copyright License. Subject to the terms and conditions of this
54-
License, each Contributor hereby grants to You a perpetual, worldwide,
55-
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
56-
reproduce, prepare Derivative Works of, publicly display, publicly perform,
57-
sublicense, and distribute the Work and such Derivative Works in Source or
58-
Object form.
59-
60-
3. Grant of Patent License. Subject to the terms and conditions of this
61-
License, each Contributor hereby grants to You a perpetual, worldwide,
62-
non-exclusive, no-charge, royalty-free, irrevocable patent license to make,
63-
have made, use, offer to sell, sell, import, and otherwise transfer the
64-
Work.
65-
66-
4. Redistribution. You may reproduce and distribute copies of the Work or
67-
Derivative Works thereof in any medium, with or without modifications, and in
68-
Source or Object form, provided that You meet the following conditions:
69-
70-
(a) You must give any other recipients of the Work or Derivative Works a copy
71-
of this License; and
72-
73-
(b) You must cause any modified files to carry prominent notices stating that
74-
You changed the files; and
75-
76-
(c) You must retain, in the Source form of any Derivative Works that You
77-
distribute, all copyright, patent, trademark, and attribution notices from
78-
the Source form of the Work; and
79-
80-
(d) If the Work includes a "NOTICE" text file as part of its distribution,
81-
then any Derivative Works that You distribute must include a readable copy of
82-
the attribution notices contained within such NOTICE file.
83-
84-
5. Submission of Contributions. Unless You explicitly state otherwise, any
85-
Contribution intentionally submitted for inclusion in the Work by You to the
86-
Licensor shall be under the terms and conditions of this License.
87-
88-
6. Trademarks. This License does not grant permission to use the trade names,
89-
trademarks, service marks, or product names of the Licensor, except as
90-
required for reasonable and customary use in describing the origin of the
91-
Work.
92-
93-
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
94-
writing, Licensor provides the Work on an "AS IS" BASIS, WITHOUT WARRANTIES
95-
OR CONDITIONS OF ANY KIND, either express or implied.
96-
97-
8. Limitation of Liability. In no event and under no legal theory, whether in
98-
contract, tort, or otherwise, unless required by applicable law, shall any
99-
Contributor be liable to You for damages arising as a result of this License
100-
or out of the use or inability to use the Work.
101-
102-
9. Accepting Warranty or Additional Liability. While redistributing the Work
103-
or Derivative Works thereof, You may choose to offer, and charge a fee for,
104-
acceptance of support, warranty, indemnity, or other liability obligations.
105-
106-
END OF TERMS AND CONDITIONS
1+
MIT License
2+
3+
Copyright (c) 2026 BRIDGE contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "bridge"
77
version = "0.1.0"
88
description = "Workflow-oriented software for brain-referenced in vivo-to-in vitro developmental evaluation"
99
readme = "README.md"
10-
license = "Apache-2.0"
10+
license = "MIT"
1111
requires-python = ">=3.10"
1212
keywords = ["single-cell", "development", "organoid", "reference-mapping", "evaluation", "cli"]
1313
classifiers = [

0 commit comments

Comments
 (0)