-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (28 loc) · 846 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (28 loc) · 846 Bytes
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
from distutils.core import setup
DESCRIPTION = "Gaussian Process for count data."
LONG_DESCRIPTION = DESCRIPTION
NAME = "GPcounts"
AUTHOR = "Nuha BinTayyash"
AUTHOR_EMAIL = "nuha.bintayyash@postgrad.manchester.ac.uk"
MAINTAINER = "Nuha BinTayyash"
MAINTAINER_EMAIL = "nuha.bintayyash@postgrad.manchester.ac.uk"
DOWNLOAD_URL = 'https://github.com/ManchesterBioinference/GPcounts'
LICENSE = 'MIT'
VERSION = '0.1'
requirements = [
]
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
url=DOWNLOAD_URL,
download_url=DOWNLOAD_URL,
license=LICENSE,
packages=['GPcounts'],
package_data={},
install_requires=requirements
)