-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (32 loc) · 1.44 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup (
name='funregulation',
version='0.3',
date='08/05/2020',
packages=find_packages(),
# Declare your packages' dependencies here, for eg:
install_requires=['Biopython','Biopython','suds.jurko','natsort','pysqlite3','bcbio-gff','psutil','matplotlib','pandas','seaborn'],
# Fill in these to make your Egg ready for upload to
# PyPI
author='arlenz',
author_email='[email protected]',
keywords = "bioinformatics",
description='Gene regulatory networks (GRN) of Penicillium ucsensis 2HH and Penicillium oxalicum 114-2 inferred by a computational biology approach',
#summary = 'Just another Python package for the cheese shop',
url='https://github.com/alexandrelenz/funregulation.git',
license='BSD 2-clause',
# could also include long_description, download_url, classifiers, etc.
include_package_data=True,
platforms='any',
test_suite='tests',
classifiers = [
'Programming Language :: Python',
'Natural Language :: Portuguese',
'Intended Audience :: Bioinformatics Users',
'License :: BSD 2-clause "Simplified" License',
'Operating System :: OS Independent',
"Topic :: Scientific/Engineering :: Bioinformatics",
'Topic :: Software Development :: Libraries :: Python Modules',
],
)