-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (44 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
"""MAPIT: Material Accountancy Performance Indicator Toolkit.
See:
https://github.com/sandialabs/MAPIT
https://sandialabs.github.io/MAPIT/index.html
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
# Arguments marked as "Required" below must be included for upload to PyPI.
# Fields marked as "Optional" may be commented out.
setup(
name="MAPIT", # Required
version="1.4.5-beta", # Required
author="Nathan Shoman, Patrick Moosir", # Optional
author_email="nshoman@sandia.gov", # Optional
install_requires = ["matplotlib","numpy","Pillow","tqdm","scipy","pyside6_essentials","ray[default]"],
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers=[
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GPL3",
"Programming Language :: Python :: 3.9"
],
packages=find_packages(), # Required
include_package_data=True,
python_requires="<3.12,>3.8",
project_urls={ # Optional
"Data": "https://github.com/sandialabs/MAPIT-tools/",
"Documents": "https://sandialabs.github.io/MAPIT/index.html",
"Source": "https://github.com/sandialabs/MAPIT",
},
entry_points = {
'console_scripts':[
'MAPIT = MAPIT.GUI.MAPIT_main:launchMAPIT'
],
},
)