Skip to content

Commit

Permalink
Freshen up setup.py. (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtilly committed Oct 10, 2021
1 parent fd5f7b8 commit b17a15c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import numpy as np
from Cython.Build import cythonize
from setuptools import Extension, find_namespace_packages, setup
from setuptools import Extension, find_packages, setup

here = path.abspath(path.dirname(__file__))

Expand Down Expand Up @@ -52,21 +52,25 @@
name="glum",
use_scm_version={"version_scheme": "post-release"},
setup_requires=["setuptools_scm"],
description="Python package to benchmark GLM implementations.",
description="High performance Python GLMs with all the features!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Quantco/glm_benchmarks",
url="https://github.com/Quantco/glum",
author="QuantCo, Inc.",
author_email="noreply@quantco.com",
classifiers=[ # Optional
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
package_dir={"": "src"},
packages=find_namespace_packages(
where="src", include=["glum"] if os.environ.get("CONDA_BUILD") else []
packages=find_packages(
where="src",
include=["glum"]
if os.environ.get("CONDA_BUILD")
else ["glum", "glum_benchmarks"],
),
install_requires=[],
entry_points=None
Expand Down

0 comments on commit b17a15c

Please sign in to comment.