Skip to content

Commit

Permalink
Adding project_urls and keywords to setup.py.
Browse files Browse the repository at this point in the history
Fixes #135.
  • Loading branch information
dhermes committed Oct 31, 2018
1 parent f7ffe1a commit cfb070d
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,22 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""Setup file for bezier."""

from __future__ import print_function

import os
import pkg_resources
import sys

import pkg_resources
import setuptools

import setup_helpers
import setup_helpers_osx
import setup_helpers_windows


VERSION = "0.8.1.dev1" # Also in ``codemeta.json`` and ``__init__.py``.
AUTHOR = "Danny Hermes" # Also in ``__init__.py``.
README_FILENAME = os.path.join(os.path.dirname(__file__), "README.rst")
Expand Down Expand Up @@ -99,6 +101,20 @@ def setup():
long_description=make_readme(),
scripts=(),
url="https://github.com/dhermes/bezier",
project_urls={
"Documentation": "https://bezier.readthedocs.io/",
"Changelog": (
"https://bezier.readthedocs.io/en/latest/releases/index.html"
),
"Issue Tracker": "https://github.com/dhermes/bezier/issues",
},
keywords=[
"Geometry",
"Curve",
u"B\u00e9zier",
"Intersection",
"Python",
],
packages=["bezier"],
package_dir={"": "src"},
license="Apache 2.0",
Expand Down

0 comments on commit cfb070d

Please sign in to comment.