Skip to content

Commit

Permalink
[refactor] file structure
Browse files Browse the repository at this point in the history
  • Loading branch information
ChocoParrot committed Sep 13, 2021
1 parent f7d89ca commit 6194587
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setuptools.setup(
name="orffinder",
version="1.1",
version="1.2",
author="ChocoParrot",
author_email="[email protected]",
description="ORFFinder API.",
Expand All @@ -17,10 +17,12 @@
project_urls={
"Bug Tracker": "https://github.com/Chokyotager/ORFFinder/issues",
},
packages=setuptools.find_packages("src/"),
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
python_requires=">=3.6"
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions orffinder/tests/test.py → tests/test_orffinder.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from Bio import SeqIO
from Bio.Seq import Seq

from unittest import TestCase
import orffinder

sequence = list(SeqIO.parse("tests/gene.fasta", "fasta"))[0]
Expand Down

0 comments on commit 6194587

Please sign in to comment.