-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1.15 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 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("cyclejet requires Python 3.6 or later", file=sys.stderr)
sys.exit(1)
with open('README.md') as f:
long_desc = f.read()
setup(name= "cyclejet",
version = '0.0.1',
description = "CycleGAN models for jet substructure ",
author = "F. Dreyer, S. Carrazza",
author_email = "[email protected], [email protected]",
url="https://gitlab.cern.ch/JetsGame/cyclegan",
long_description = long_desc,
entry_points = {'console_scripts':
['cyclejet = cyclejet.scripts.run: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',
],
)