forked from certified-spec/specPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (32 loc) · 1.25 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
from distutils.core import setup
files = ["*.py"]
setup(name="specPy",
version = "1.0",
description = """
python package containing different modules providing functionality related
with the spec software (by Certified Scientific Software)
""",
author = "Bixente Rey Bakaikoa",
author_email = "[email protected]",
url = "http://www.certif.com",
packages = ['specPy'],
package_data = {'specPy': files},
scripts = {"specfile"},
long_description = """
spec is an application by Certified Scientific Software
(http://www.certif.com/) specialized in instrument control and data
acquisition in X-Ray diffraction experiments and it is largely used
and many synchrotrons, universities and laboratories around the
world.
Modules in this package include:
filespec
-----------
This module gives full access to scans recorded in files writing with
the spec file format.
The spec file format organizes scans (data from experimental acquisitions
sequences) in blocks inside a file. Each block of data if preceded by a
header block containing the metadata associated with the acquisition.
For a full description of the format and the description of its organization
and keywords refer to the documentation distributed with this package.
"""
)