Skip to content

Commit

Permalink
prepare for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
alexismhill3 committed Aug 20, 2021
1 parent cba65e5 commit 6888567
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 14 deletions.
13 changes: 7 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# virtual environments
env/
env_test/
env-dist/

# distribution stuff
# distribution artifacts
dist/
.eggs/

# build stuff
__pycache__/
opfi.egg-info/
.eggs/
*.o
build/

# don't include compiled pilercr
*.o
lib/pilercr1.06/pilercr

# dev tools
Expand All @@ -25,3 +24,5 @@ docs/_build

# python notebook checkpoints
.ipynb_checkpoints

__pycache__/
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## Opfi 0.1.0

Initial release.
22 changes: 14 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="opfi",
version="0.1.0",
author="Alexis M Hill, James Rybarski",
author_email="[email protected]",
description="A suite of tools for finding and analyzing genomic systems of interest.",
# long_description=long_description,
# long_description_content_type="text/markdown",
url="https://github.com/alexismhill3/CRISPR-Transposons",
description="A package for discovery, annotation, and analysis of gene clusters in genomics or metagenomics datasets.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/wilkelab/Opfi",
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
classifiers=[
Expand All @@ -20,5 +17,14 @@
"Operating System :: OS Independent",
],
python_requires='>=3.6',
setup_requires=['wheel'],
install_requires=[
"biopython==1.76",
"pytest==5.3.2",
"hypothesis==5.1.1",
"matplotlib==3.2.1",
"PyYAML==5.4",
"dna-features-viewer==3.0.1",
"more-itertools==8.4.0",
"parasail==1.2",
]
)

0 comments on commit 6888567

Please sign in to comment.