Skip to content

Commit

Permalink
[refactor] package changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ChocoParrot committed Sep 12, 2021
1 parent 52aa509 commit 38cb99e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion orffinder/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
name="orffinder"
Empty file added orffinder/tests/__init__.py
Empty file.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
biopython=1.79
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
#!/usr/bin/env python

import setuptools

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

setuptools.setup(
name="orffinder",
version="1.0.0",
version="1.1",
author="ChocoParrot",
author_email="[email protected]",
description="ORFFinder API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Chokyotager/ORFFinder",
packages=setuptools.find_packages(),
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",
Expand Down

0 comments on commit 38cb99e

Please sign in to comment.