Skip to content

Commit a48be4b

Browse files
committed
updates
1 parent d8a5ed8 commit a48be4b

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

README.txt

Whitespace-only changes.

setup.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)