-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (75 loc) · 3.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "socialgene"
version = "1.1.2"
description = "Creating and interacting with graph databases of protein domains and their genome coordinates"
readme = "README.md"
authors = [
{name = "Chase M. Clark", email = "[email protected]"},
]
keywords = [] #! TODO
requires-python = ">=3.12"
# Pypi classifiers: https://pypi.org/classifiers/
classifiers = [ #! Update me
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"rdkit==2024.3.3",
"pandas>=2.2",
"numpy>=1.26", # rdkit requires <2.0
"neo4j>=5.22.0",
"biopython>=1.84",
"textdistance>=4.6.3",
"rich>=13.7.1",
"requests>=2.32.3"
]
[project.license]
text = "MIT"
[project.urls]
repository = "https://github.com/socialgene/sgpy"
homepage = "https://socialgene.github.io"
[project.optional-dependencies]
chem= ["rdkit"]
ci = ["pytest-cov"]
cd = ["twine"]
[project.scripts]
# Entry points for the package https://python-poetry.org/docs/pyproject/#scripts
socialgene ="socialgene.cli.__main__:main"
# Used in the Nextflow pipeline
sg_process_domtblout = "socialgene.cli.nextflow.process_domtblout:main"
sg_clean_hmm = "socialgene.cli.nextflow.clean_hmms:main"
sg_process_genbank = "socialgene.cli.nextflow.export_protein_loci_assembly_tables:main"
sg_ncbi_taxonomy = "socialgene.cli.nextflow.parse_ncbi_taxonomy:main"
sg_export_parameters = "socialgene.cli.nextflow.parameter_export:main"
sg_export_neo4j_headers = "socialgene.cli.nextflow.export_neo4j_header_files:main"
sg_create_neo4j_db = "socialgene.cli.nextflow.create_neo4j_db:main"
sg_hmm_tsv_parser = "socialgene.cli.nextflow.socialgene_hmm_tsv_parser:main"
sg_get_goterms = "socialgene.utils.goterms:main"
# search
sg_mm_create = "socialgene.mmseqs.create_database:main"
sg_mm_search = "socialgene.mmseqs.search:main"
sg_search_gc = "socialgene.cli.search.gene_cluster:main"
# Modify database
sgdb_import_classyfire = "socialgene.dbmodifiers.classyfire.import:main"
# neo4j
sg_index = "socialgene.cli.neo4j.indices:main"
sg_massage = "socialgene.cli.neo4j.massage:main"
# info
sg_version = "socialgene.utils.version:main"
sg_neo4j_version = "socialgene.utils.version:main"
sg_schema = "socialgene.neo4j.schema.graph_schema:main"
# addons
sg_import_gnps = "socialgene.addons.gnps_networking.cli:main"
sg_import_npatlas = "socialgene.addons.npatlas.cli:main"
sg_chem_sim = "socialgene.addons.chemistry.cli_similarity:main"