-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 1.1 KB
/
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
import subprocess
import sys
try:
from skbuild import setup
except ModuleNotFoundError:
subprocess.check_call([sys.executable, "-m", "pip", "install", "scikit-build"])
from skbuild import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pychadwick",
version="0.6.1",
author="Ben Dilday",
author_email="[email protected]",
description="Python bindings to the Chadwick library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bdilday/pychadwick",
packages=find_packages(),
cmake_install_dir="pychadwick/lib",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: C",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
],
install_requires=["scikit-build", "ninja", "cmake", "wheel", "setuptools", "pandas>=1.0.4", "requests"],
entry_points={"console_scripts": ["pycwevent=pychadwick.cli.pycwevent:main"]},
)