-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
48 lines (45 loc) · 1.38 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
48
[metadata]
name = geniesp
version = attr: geniesp.__version__
description = Export cBioPortal files for BPC
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Sage-Bionetworks/GENIE-Sponsored-Projects
author = Thomas Yu
author_email = [email protected]
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/Sage-Bionetworks/GENIE-Sponsored-Projects/issues
Source Code = https://github.com/Sage-Bionetworks/GENIE-Sponsored-Projects
[options]
packages = find:
include_package_data = True
zip_safe = False
install_requires =
synapseclient==2.7.2
aacrgenie==16.3.0
pandas==1.4.4
python_requires = ==3.8.20
[options.entry_points]
console_scripts =
geniesp = geniesp.__main__:main
[flake8]
max-line-length = 88
ignore =
# space before : (needed for how black formats slicing)
E203