-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (33 loc) · 1.09 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
36
37
38
39
from setuptools import setup
####################################
# Add long description from README #
####################################
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
#########
# Setup #
#########
setup(
name="bihc",
version="0.0.8.9",
description="BIHC: Beam-Induced Heating Computation package",
author="Elena de la Fuente, Francesco Giordano, Leonardo Sito",
author_email="[email protected]",
packages=['bihc'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LeonardoSito/BIHC",
project_urls={"Bug Tracker": "https://github.com/LeonardoSito/BIHC/issues"},
install_requires = [
'numpy',
'matplotlib',
'scipy',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)