-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (39 loc) · 1.99 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import versioneer
# Read author etc. from __init__.py
for line in open('ypkpathway/__init__.py'):
if line.startswith('__') and not line.startswith('__version') and not line.startswith('__long'):
exec(line.strip())
from setuptools import setup
import os
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup( name='ypkpathway',
version=versioneer.get_version()[:5],
cmdclass=versioneer.get_cmdclass(),
author =__author__,
author_email =__email__,
packages=['ypkpathway'],
package_data={'ypkpathway': [os.path.join('data','*'), os.path.join('icons','*')]},
entry_points = { 'gui_scripts' : [ 'ypkpathway = ypkpathway.gui:main', ],
'console_scripts' : [ 'ypkpathway_cli = ypkpathway.ypkpathway:main'] },
url='https://github.com/BjornFJohansson/ypkpathway',
license='LICENSE.txt',
description='''Simulation and documentation of metabolic pathway assemblies using the Yeast Pathway Kit.''',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires = [ "pydna", "ipython", "docopt", "notedown", "nbformat", "nbconvert"], # "PyQt5"
zip_safe = False,
keywords = u"bioinformatics",
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
'Topic :: Scientific/Engineering :: Bio-Informatics',])