-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
54 lines (47 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
from setuptools import find_packages
try:
from pypandoc import convert
def get_long_description(file_name):
return convert(file_name, 'rst', 'md')
except ImportError:
def get_long_description(file_name):
with open(file_name) as f:
return f.read()
if __name__ == '__main__':
setup(
name='dotplot',
packages=find_packages(),
version='0.4.5',
license='LGPL-3.0',
description='Small bioinformatic package for dotplot\'s generation (in command line and in GUI)',
long_description=get_long_description('README.md'),
author='kn_bibs',
author_email='[email protected]',
url='https://github.com/kn-bibs/dotplot',
download_url='https://github.com/kn-bibs/dotplot/tarball/v0.4.5-alpha',
keywords=['dotplot', 'bioinformatic', 'gui', 'bioinformatics', 'cli'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Utilities',
'Environment :: X11 Applications :: Qt',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'PyQt5',
'matplotlib',
'requests'
],
scripts=['bin/dotplot'],
package_data={
'dotplot': ['matrices/*.txt']
}
)