-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 765 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 765 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__authors__ = ['Anselm Hahn']
__license__ = 'MIT'
__version__ = '1.0'
__date__ = '12/09/2019'
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='RIXSPlot',
python_requires='>=3.6.0',
version=__version__,
packages=['test', 'RIXSPlot', 'Interface'],
install_requires=required,
url='https://github.com/Anselmoo/RIXSPlot',
download_url='https://github.com/Anselmoo/RIXSPlot/releases',
license=__license__,
author=__authors__,
author_email='Anselm.Hahn@gmail.com',
description='RIXS-Plotting program for XAS- and XES-Cuts and further modifications',
platforms=['MacOS :: MacOS X', 'Microsoft :: Windows','POSIX :: Linux'],
)