forked from HelikarLab/candis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.py
executable file
·29 lines (28 loc) · 864 Bytes
/
package.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
name = 'candis'
version = '0.1.0'
release = '0.1.0'
description = 'A data mining suite for DNA microarrays'
long_description = ['README.md']
keywords = ['data', 'mining', 'suite', 'bioinformatics', 'machine',
'learning'
]
authors = [
{ 'name': 'Achilles Rasquinha', 'email': 'achillesrasquinha@gmail.com' }
]
maintainers = [
{ 'name': 'Achilles Rasquinha', 'email': 'achillesrasquinha@gmail.com' }
]
license = 'GNU GPL v3'
modules = [
'candis'
]
test_modules = [
]
homepage = 'https://candis.readthedocs.io'
github_username = 'achillesrasquinha'
github_repository = 'candis'
github_url = '{baseurl}/{username}/{repository}'.format(
baseurl = 'https://github.com',
username = github_username,
repository = github_repository
)