-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 780 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 780 Bytes
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
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages, setup
setup(
author="Anonymous",
author_email="mova@users.noreply.github.com",
python_requires=">=3.8",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.8",
],
description="Fast simulation of the HGCal using neural networks.",
entry_points={
"console_scripts": [
"fgsim=fgsim.__main__.py:main",
],
},
install_requires=[],
include_package_data=True,
keywords="fgsim",
name="fgsim",
packages=find_packages(
include=["fgsim"],
),
setup_requires=["setuptools"],
url="https://github.com/mova/fgsim",
version="0.1.0",
zip_safe=False,
)