-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (26 loc) · 914 Bytes
/
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
from distutils.core import setup
DESCRIPTION = "GrandPrix: Scaling up the Bayesian GPLVM."
LONG_DESCRIPTION = "GrandPrix: Scaling up the Bayesian GPLVM for single-cell data."
NAME = "GrandPrix"
AUTHOR = "Sumon Ahmed"
AUTHOR_EMAIL = "[email protected]"
MAINTAINER = "Sumon Ahmed"
MAINTAINER_EMAIL = "[email protected]"
DOWNLOAD_URL = 'https://github.com/ManchesterBioinference/GrandPrix'
LICENSE = 'MIT'
VERSION = '0.1'
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=['GrandPrix'],
package_data={'':['gpflowrc', 'gpflowrc32', 'gpflowrc64']},
include_package_data=True
)