Skip to content
Snippets Groups Projects
Commit 9a2bdf20 authored by Michael Sandholzer's avatar Michael Sandholzer
Browse files

Merge branch 'init' into 'main'

setup.py and init to create a package	new file:   read_sequencer_package/__init__.py

See merge request !7
parents dadbc584 fc16f334
No related branches found
No related tags found
1 merge request!7setup.py and init to create a package new file: read_sequencer_package/__init__.py
setup.py 0 → 100644
from setuptools import setup
setup(
name='awesome_read_sequencer',
version='0.1.0',
author='An Awesome Coder',
author_email='aac@example.com',
packages=['random', 'sys'],
scripts=['read_in_FASTA.py','read_sequence.py']
license='LICENSE.txt',
description='An awesome package that simulates sequencing of a FASTA file.',
long_description=open('README.md').read(),
install_requires=[
"random",
"sys"
],
)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment