Skip to content
Snippets Groups Projects
Commit cb1e8534 authored by Christoph Harmel's avatar Christoph Harmel
Browse files

Merge branch 'build_package' into 'main'

fix: fixed setup.py so building package is possible

See merge request !17
parents 56e5ca90 fe818525
No related branches found
No related tags found
1 merge request!17fix: fixed setup.py so building package is possible
MIT License
Copyright (c) [year] [fullname]
Copyright (c) 2022 Clara Serger, Michael Sandholzer and Christoph Harmel
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
......
File added
File added
File added
File added
Metadata-Version: 2.1
Name: read-sequencer
Version: 0.1.0
Summary: Simulates sequencing with a specified read length from sequences specified by a FASTA file.
Home-page: https://git.scicore.unibas.ch/zavolan_group/tools/read-sequencer
Author: Clara Serger, Michael Sandholzer and Christoph Harmel
Author-email: christoph.harmel@unibas.ch
License: MIT
License-File: LICENSE.txt
LICENSE.txt
README.md
setup.py
read_sequencer.egg-info/PKG-INFO
read_sequencer.egg-info/SOURCES.txt
read_sequencer.egg-info/dependency_links.txt
read_sequencer.egg-info/entry_points.txt
read_sequencer.egg-info/requires.txt
read_sequencer.egg-info/top_level.txt
read_sequencer_package/__init__.py
read_sequencer_package/cli.py
read_sequencer_package/modules.py
\ No newline at end of file
[console_scripts]
read_sequencer = read_sequencer_package.cli:main
random
textwrap
argparse
read_sequencer_package
from setuptools import setup
from setuptools import setup, find_packages
setup(
name='awesome_read_sequencer',
name='read_sequencer',
version='0.1.0',
author='An Awesome Coder',
author_email='aac@example.com',
packages=['random'],
scripts=['cli.py', 'modules.py'],
license='LICENSE.txt',
description='An awesome package that simulates sequencing from sequences specified by a FASTA file.',
long_description=open('README.md').read(),
install_requires=['random', 'sys'],
entry_points={
'console_scripts': ['read_sequencer=read_sequencer_package/cli.py:main']
}
url='https://git.scicore.unibas.ch/zavolan_group/tools/read-sequencer',
license='MIT',
author='Clara Serger, Michael Sandholzer and Christoph Harmel',
author_email='christoph.harmel@unibas.ch',
description='Simulates sequencing with a specified read length from sequences specified by a FASTA file.',
packages=find_packages(),
install_requires=['random','textwrap','argparse'],
entry_points={'console_scripts': ['read_sequencer=read_sequencer_package.cli:main']}
)
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