-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.02 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.02 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pnnplus',
version='0.1.8',
description='A Python library that implements Parametric Neural Networks (PNN) for use in high-energy physics and beyond.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Xulei Sun',
author_email='sxl66@outlook.com',
url='https://github.com/feixukeji/pnnplus',
packages=find_packages(),
install_requires=[
'numpy',
'pandas',
'seaborn',
'tensorflow',
'scikit-learn',
'joblib',
'matplotlib',
'IPython'
],
extras_require={
'hep': ['uproot', 'awkward'],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
license='GPL-3.0',
)