forked from JADE-V-V/JADE
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 894 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
requirements = fh.readlines()
setuptools.setup(
name="JADE",
version="0.0.2",
author="Steven Bradnam",
author_email="steve.bradnam@ukaea.uk",
description="Linux implimentation of a new tool for nuclear libraries V&V. Brought to you by NIER, University of Bologna (UNIBO), Fusion For Energy (F4E) and United Kingdom Atomic Energy Authority (UKAEA).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sbradnam/JADE",
packages=setuptools.find_packages(),
entry_points= dict(console_scripts=['jade=jade.main:main']),
install_requires=requirements,
classifiers=["Programming Language :: Python :: 3",
"Operating System :: OS Independent"],
)