-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 915 Bytes
/
setup.py
File metadata and controls
38 lines (33 loc) · 915 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
33
34
35
36
37
38
# -*- coding: utf-8 -*-
"""
Created on Thu Sep 10 03:22:19 2020
@author: Jon
"""
from distutils.core import setup
DESCRIPTION = "burstInfer: inferring single-cell transcriptional parameters"
LONG_DESCRIPTION = DESCRIPTION
NAME = "burstInfer"
AUTHOR = "Jonathan R. Bowles"
AUTHOR_EMAIL = "email placeholder"
MAINTAINER = "Jonathan R. Bowles"
MAINTAINER_EMAIL = "email placeholder"
DOWNLOAD_URL = 'https://github.com/ManchesterBioinference/burstInfer'
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=['burstInfer'],
package_data={},
install_requires=requirements
)