-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
34 lines (32 loc) · 1011 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
__author__ = "Konstantin Weddige"
from setuptools import setup, Extension
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="MiniballCpp",
version="0.2.3",
description="Smallest Enclosing Balls of Points",
long_description=long_description,
author="Bernd Gärtner, Konstantin Weddige",
url="https://github.com/weddige/miniball",
packages=[
"miniball",
],
package_data={"miniball": ["py.typed"]},
ext_modules=[
Extension(
"miniball.bindings",
["src/miniballmodule.cpp"],
include_dirs=["src"],
language="c++",
),
],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)