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 d8a5ed8 commit a48be4bCopy full SHA for a48be4b
README.txt
setup.py
@@ -0,0 +1,26 @@
1
+# -*- coding: utf-8 -*-
2
+"""
3
+@author: bugra
4
5
+
6
+# def parse_requirements(filename):
7
+# with open(filename, encoding='utf-8') as fid:
8
+# requires = [line.strip() for line in fid.readlines() if line]
9
+# return requires
10
11
+def readme():
12
+ with open('README.txt') as f:
13
+ return f.read()
14
15
+# requirements = parse_requirements('requirements.txt')
16
17
+setuptools.setup(
18
+ name = 'zarr_parallel_processing',
19
+ version = '0.0.1',
20
+ description = 'Scratch repository for OME-NGFF hackathon',
21
+ long_description = readme(),
22
+ long_description_content_type = "text/markdown",
23
+ # license = 'MIT',
24
+ packages = setuptools.find_packages(),
25
+ include_package_data=True,
26
+ )
0 commit comments