Skip to content

Commit

Permalink
change to src layout and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
afrubin committed Sep 18, 2023
1 parent 60bf045 commit d99111a
Show file tree
Hide file tree
Showing 23 changed files with 89 additions and 118 deletions.
6 changes: 6 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# http://pep8.readthedocs.org/en/latest/intro.html#error-codes
[flake8]
max-line-length = 120
exclude = tests/*
max-complexity = 10
ignore = E129,E221,E241,E251,E303,W291
83 changes: 83 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
[project]
name = "uta"
dynamic = ["version"]
description = "Universal Transcript Archive"
readme = "README.md"
requires-python = ">=3.5"
license = {text = "Apache-2.0"}

keywords = [
"bioinformatics",
"computational biology",
"genome variants",
"genome variation",
"genomic variants",
"genomic variation",
"genomics",
"hgvs",
]

authors = [
{name = "UTA Contributors", email = "[email protected]" }
]
maintainers = [
{name = "UTA Contributors", email = "[email protected]" }
]

classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]

dependencies = [
"attrs",
"biocommons.seqrepo",
"biopython>=1.69",
"bioutils",
"colorlog",
"configparser",
"docopt",
"eutils>=0.3.2",
"nose",
"prettytable",
"psycopg2-binary",
"pytz",
"recordtype",
"sqlalchemy",
"uta-align",
]

[project.optional-dependencies]
test = ["coverage", "testing.postgresql"]

[project.urls] # Optional
"Homepage" = "https://github.com/biocommons/uta"
"Bug Reports" = "https://github.com/biocommons/uta/issues"
"Source" = "https://github.com/biocommons/uta"

[project.scripts]
uta = "uta.cli:main"

# This is configuration specific to the `setuptools` build backend.
# If you are using a different build backend, you will need to change this.
[tool.setuptools]
# If there are data files included in your packages that need to be
# installed, specify them here.
package-data = {"sample" = ["*.dat"]}

[build-system]
requires = [
"setuptools>=43.0.0",
"setuptools_scm==1.11.1",
"wheel"
]
build-backend = "setuptools.build_meta"
23 changes: 0 additions & 23 deletions setup.cfg

This file was deleted.

95 changes: 0 additions & 95 deletions setup.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added tests/__init__.py
Empty file.

0 comments on commit d99111a

Please sign in to comment.