-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
37 lines (33 loc) · 1.07 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import pip
from setuptools import setup, find_packages
__version__ = '1.1'
# Get the long description from the README file
with open('README.md', 'r') as readme:
long_description = readme.read()
# get the dependencies and installs
with open('requirements.txt', 'r') as requirements:
reqs = requirements.read().splitlines()
setup(
name='kinfin',
version=__version__,
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',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
keywords='Comparative genomics',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
author='Dominik R Laetsch',
entry_points={
'console_scripts': [
"kinfin=src.kinfin:main",
],
},
author_email='[email protected]'
)