-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
47 lines (41 loc) · 1.09 KB
/
setup.cfg
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
[metadata]
# replace with your username:
name = mopepgen
version = attr: moPepGen.__version__
author = Chenghao Zhu, Yiyang Liu
author_email = [email protected], [email protected]
description = Multi-omic peptide generator
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/uclahs-cds/package-moPepGen
project_urls =
Bug Tracker = https://github.com/uclahs-cds/package-moPepGen/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Operating System :: OS Independent
[options]
include_package_data = True
packages = find:
python_requires = >=3.7
install_requires =
biopython
psutil
pathos
six
matplotlib
regex
[options.packages.find]
where = .
exclude =
test,
test.*,
main
[options.package_data]
moPepGen = data/*
[options.entry_points]
console_scripts =
moPepGen = moPepGen.cli.__main__:main
moPepGen-util = moPepGen.util.__main__:main
[tool:pytest]
addopts = --ignore test/integration/test_brute_force.py