forked from specpython/filespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (24 loc) · 1.1 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
from distutils.core import setup
files = ["*.py"]
setup(name="specpython",
version = "1.0",
description = "python module to access spec data files",
author = "Bixente Rey Bakaikoa",
author_email = "[email protected]",
url = "http://www.certif.com",
packages = ['specpython'],
package_data = {'specpython': files},
scripts = {"specfile"},
long_description = """
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.
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.
"""
)