Skip to content

Commit f8dbee0

Browse files
committed
cleaned up setup.py by removing some comments
1 parent a1bed6c commit f8dbee0

File tree

1 file changed

+5
-37
lines changed

1 file changed

+5
-37
lines changed

setup.py

Lines changed: 5 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,18 @@
88

99
setup(
1010
name='delphi',
11-
12-
# Versions should comply with PEP 440:
13-
# https://www.python.org/dev/peps/pep-0440/
14-
#
15-
# For a discussion on single-sourcing the version across setup.py and the
16-
# project code, see
17-
# https://packaging.python.org/en/latest/single_source_version.html
18-
version='2.0.1', # Required
19-
20-
description='A framework for assembling probabilistic models from text.', # Required
21-
11+
version='2.0.1',
12+
description='A framework for assembling probabilistic models from text.',
2213
url='https://ml4ai.github.io/delphi/',
2314
author='ML4AI',
2415
author_email='[email protected]',
25-
26-
classifiers=[ # Optional
16+
classifiers=[
2717
'Development Status :: 3 - Alpha',
2818
'Intended Audience :: Science/Research',
2919
'Topic :: Scientific/Engineering :: Artificial Intelligence',
3020
'License :: OSI Approved :: Apache Software License',
3121
'Programming Language :: Python :: 3.6',
3222
],
33-
3423
keywords='assembling models from text',
3524
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
3625
install_requires=[
@@ -47,15 +36,7 @@
4736

4837
python_requires='>=3.6',
4938
setup_requires=['cython'],
50-
# List additional groups of dependencies here (e.g. development
51-
# dependencies). Users will be able to install these using the "extras"
52-
# syntax, for example:
53-
#
54-
# $ pip install sampleproject[dev]
55-
#
56-
# Similar to `install_requires` above, these must be valid existing
57-
# projects.
58-
extras_require={ # Optional
39+
extras_require={
5940
'dev': ['check-manifest'],
6041
'test': ['pytest', 'mypy'],
6142
'docs' : [
@@ -64,18 +45,5 @@
6445
'sphinx-autodoc-typehints'
6546
]
6647
},
67-
68-
dependency_links=['git+https://github.com/sorgerlab/indra.git#egg=indra']
69-
# To provide executable scripts, use entry points in preference to the
70-
# "scripts" keyword. Entry points provide cross-platform support and allow
71-
# `pip` to create the appropriate form of executable for the target
72-
# platform.
73-
#
74-
# For example, the following would provide a command called `sample` which
75-
# executes the function `main` from this package when invoked:
76-
# entry_points={ # Optional
77-
# 'console_scripts': [
78-
# 'rundelphi=delphi.commands:cli',
79-
# ],
80-
# },
48+
dependency_links=['git+https://github.com/sorgerlab/indra.git#egg=indra'],
8149
)

0 commit comments

Comments
 (0)