Skip to content

Commit

Permalink
Update packaging metadata. (#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
ceball authored and philippjfr committed Nov 17, 2019
1 parent 26ac2a5 commit 2a3e838
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
7 changes: 4 additions & 3 deletions pyproject.toml
@@ -1,7 +1,8 @@
[build-system]
requires = [
"param >=1.7.0",
"bokeh >=1.4.0",
"param >=1.9.0",
"pyct >=0.4.4",
"setuptools >=30.3.0",
"setuptools >=30.3.0",
"bokeh >=1.4.0",
"pyviz_comms >=0.6.0"
]
25 changes: 20 additions & 5 deletions setup.py
Expand Up @@ -137,14 +137,18 @@ def run(self):

extras_require['all'] = sorted(set(sum(extras_require.values(), [])))

# until pyproject.toml/equivalent is widely supported (setup_requires
# doesn't work well with pip)
# Superset of what's in pyproject.toml (includes non-python
# dependencies). Also, pyproject.toml isn't supported by all tools
# anyway (e.g. older versions of pip, or conda - which also supports
# non-python dependencies). Note that setup_requires isn't used
# because it doesn't work well with pip.
extras_require['build'] = [
'param >=1.9.0',
'pyct >=0.4.4',
'setuptools >=30.3.0',
'bokeh >=1.4.0',
'pyviz_comms >=0.6.0',
# non-python dependency
'nodejs >=9.11.1',
]

Expand All @@ -168,13 +172,24 @@ def run(self):
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Legal Industry",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries"],
python_requires=">=2.7",
entry_points={
Expand Down

0 comments on commit 2a3e838

Please sign in to comment.