Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update some packaging metadata. #370

Merged
merged 1 commit into from Jan 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 8 additions & 6 deletions setup.py
Expand Up @@ -32,15 +32,15 @@ def get_setup_version(reponame):
setup_args = dict(
name='param',
version=get_setup_version("param"),
description='Declarative Python programming using Parameters.',
description='Make your Python code clearer and more reliable by declaring Parameters.',
long_description=open('README.rst').read() if os.path.isfile('README.rst') else 'Consult README.rst',
author="IOAM",
author_email="developers@topographica.org",
maintainer="IOAM",
maintainer_email="developers@topographica.org",
author="HoloViz",
author_email="developers@holoviz.org",
maintainer="HoloViz",
maintainer_email="developers@holoviz.org",
platforms=['Windows', 'Mac OS X', 'Linux'],
license='BSD',
url='http://ioam.github.com/param/',
url='http://param.holoviz.org/',
packages=["param","numbergen"],
provides=["param","numbergen"],
include_package_data = True,
Expand All @@ -57,6 +57,8 @@ def get_setup_version(reponame):
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
Expand Down