We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 979499d commit eaba165Copy full SHA for eaba165
setup.py
@@ -12,23 +12,7 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-import os
16
-
17
-from codecs import open
18
19
-from setuptools import find_packages, setup
20
21
22
-def read_version():
23
- here = os.path.abspath(os.path.dirname(__file__))
24
- with open(os.path.join(here, "pymc_extras", "version.txt")) as f:
25
- version = f.read().strip()
26
- return version
27
+from setuptools import setup
28
29
if __name__ == "__main__":
30
- setup(
31
- name="pymc-extras",
32
- version=read_version(),
33
- packages=find_packages(exclude=["tests*"]),
34
- )
+ setup()
0 commit comments