forked from DRL/kinfin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bafc0c7
commit 3974afc
Showing
1 changed file
with
18 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]", | ||
) |