-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (31 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
# This file is part of gLund 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("gLund requires Python 3.6 or later", file=sys.stderr)
sys.exit(1)
with open('README.md') as f:
long_desc = f.read()
setup(name= "glund",
version = '0.0.1',
description = "Generative models for jet substructure ",
author = "F. Dreyer, S. Carrazza",
author_email = "frederic.dreyer@cern.ch, stefano.carrazza@cern.ch",
url="https://gitlab.cern.ch/JetsGame/gLund",
long_description = long_desc,
entry_points = {'console_scripts':
['glund = glund.scripts.glund:main',
'glund_generate = glund.scripts.glund_generate: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',
],
)