-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 1.12 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
from setuptools import setup, find_packages
with open("README.md", "r") as file:
readme = file.read()
setup(
name = 'spada',
packages = find_packages(),
package_dir = {'spada': 'spada'},
package_data = {'spada': ['annotation_files/*.pklz']},
version = '1.26.5',
description = 'Find splicing-led, functional changes of the proteome.',
long_description=readme,
long_description_content_type='text/markdown',
author = 'Héctor Climente-González',
author_email = '[email protected]',
license = 'MIT',
url = 'https://github.com/hclimente/spada',
download_url = 'https://github.com/hclimente/spada/archive/v1.9.1.tar.gz',
keywords = ['alternative', 'splicing', 'analysis', 'transcriptomics', 'networks'],
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only'],
install_requires = [
'networkx >= 1.11',
'numpy >= 1.13.1'],
scripts=['bin/spada']
)