-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (30 loc) · 1.17 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
# This file is part of GroomRL by S. Carrazza and F. A. Dreyer
from __future__ import print_function
import sys
from setuptools import setup, find_packages
if sys.version_info < (3,6):
print("GroomRL requires Python 3.6 or later", file=sys.stderr)
sys.exit(1)
with open('README.md') as f:
long_desc = f.read()
setup(name= "groomrl",
version = '1.0.3',
description = "A jet grooming algorithm based on reinforcement learning",
author = "F. Dreyer, S. Carrazza",
author_email = "[email protected], [email protected]",
url="https://gitlab.cern.ch/JetsGame/GroomRL",
long_description = long_desc,
entry_points = {'console_scripts':
['groomrl = groomrl.scripts.groomer:main']},
package_dir = {'': 'src'},
packages = find_packages('src'),
zip_safe = False,
classifiers=[
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
)