Skip to content

Commit

Permalink
feat: update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-b-84 committed Jul 9, 2024
1 parent bafc0c7 commit 3974afc
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
import pip
from setuptools import setup, find_packages

__version__ = '1.1'
__version__ = "1.1"

# Get the long description from the README file
with open('README.md', 'r') as readme:
with open("README.md", "r") as readme:
long_description = readme.read()

# get the dependencies and installs
with open('requirements.txt', 'r') as requirements:
with open("requirements.txt", "r") as requirements:
reqs = requirements.read().splitlines()

setup(
name='kinfin',
name="kinfin",
version=__version__,
description='Taxon-aware analysis of clustered protein data',
description="Taxon-aware analysis of clustered protein data",
long_description=long_description,
url='https://github.com/DRL/kinfin',
download_url='https://github.com/DRL/kinfin/tarball/' + __version__,
license='GnuGPL3',
url="https://github.com/DRL/kinfin",
download_url="https://github.com/DRL/kinfin/tarball/" + __version__,
license="GnuGPL3",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
keywords='Comparative genomics',
packages=find_packages(exclude=['docs', 'tests*']),
keywords="Comparative genomics",
packages=find_packages(exclude=["docs", "tests*"]),
include_package_data=True,
author='Dominik R Laetsch',
author="Dominik R Laetsch",
entry_points={
'console_scripts': [
"console_scripts": [
"kinfin=src.kinfin:main",
],
},
author_email='[email protected]'
],
},
author_email="[email protected]",
)

0 comments on commit 3974afc

Please sign in to comment.