-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
48 lines (42 loc) · 1.12 KB
/
pyproject.toml
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
39
40
41
42
43
44
45
46
47
#Declaring the build backend
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
#Project's meta data
[project]
version = "2.0.2"
name = "cpgtools"
authors = [
{name="Liguo Wang", email="[email protected]"},
]
maintainers = [
{name = "Liguo Wang", email = "[email protected]"}
]
description = "Tools to analyze and visualize DNA methylation data"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.5"
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"weblogo",
"bx-python",
"pandas",
"umap-learn",
"fancyimpute",
]
classifiers=[
"Programming Language :: Python :: 3",
'Development Status :: 4 - Beta',
"License :: OSI Approved :: MIT License",
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
keywords = ["DNA methylation", "EPIC", "450K", "850K", "935K", "RRBS", "WGBS"]
[project.urls]
Documentation = "https://cpgtools.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/liguowang/cpgtools.git"