-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (35 loc) · 1.02 KB
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
#!/usr/bin/env python
#
# setup for the KEGG Parser
#
# use the following to install:
#
# $: python setup.py install
#
import os
from setuptools import setup, find_packages
setup(
name = 'KEGGParser',
version = 0.3,
description = 'KEGG Parser',
long_description = open('README.md').read(),
author = "Giovanni M. Dall'Olio & Guillaume Dumas",
author_email = "giovanni.dallolio@kcl.ac.uk",
url = 'https://github.com/dalloliogm/kegg-kgml-parser--python-',
package_data = {'': ['*.xml']},
packages = find_packages(exclude=["tests", "plots","bugs"]),
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
keywords='KEGG, pathways, parser',
license='GPL',
data_files = ['README.md'],
install_requires=[
# 'setuptools',
'networkx'
],
)