-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (31 loc) · 864 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
30
31
32
33
34
35
36
# setup.py
from setuptools import setup
PACKAGE = "pygmnormalize"
NAME = "pygmnormalize"
DESCRIPTION = "Package with methods for normalization matrices of genes expression."
AUTHOR = "Grigory Feoktistov"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/ficusss/PyGMNormalize"
VERSION = __import__(PACKAGE).__version__
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license="MIT",
url=URL,
packages=[PACKAGE],
install_requires=[
'numpy',
'scipy',
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
zip_safe=False,
)