-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·38 lines (35 loc) · 1.26 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
#!/usr/bin/env python
# coding=utf-8
"""pyxda - X-ray Data Analysis Library
"""
from setuptools import setup, find_packages
# define distribution
setup(
name = "pyxda",
version = "1.0",
packages = find_packages(),
package_data = {"pyxda" : ['tests/testdata/*']},
author = 'Simon J.L. Billinge',
author_email = '[email protected]',
maintainer = 'Pavol Juhas',
maintainer_email = '[email protected]',
# url = '',
# download_url = 'FIXME to github URL',
description = "X-ray Data Analysis Library",
license = 'BSD',
classifiers = [
# List of possible values at
# http://pypi.python.org/pypi?:action=list_classifiers
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Physics',
],
entry_points = {
'console_scripts': ['pyxda = pyxda.commandline:main',
'srxes = pyxda.srxes.userinterface:main'],
},
)