forked from BenLand100/kdfit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.22 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
34
35
36
37
38
39
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="kdfit-benland100",
version="0.0.1",
author="Benjamin J. Land",
author_email="[email protected]",
description="A package for performing kernel density estimation with CUDA",
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU General Public License v3 (GPLv3)",
platforms="any",
url="https://github.com/BenLand100/kdfit",
project_urls={
"Bug Tracker": "https://github.com/BenLand100/kdfit/issues"
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.9",
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics"
],
packages=['kdfit'],
python_requires=">=3.9",
install_requires=[
"scipy",
"numpy",
"cupy",
"h5py",
"uproot4"
]
)