-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (50 loc) · 1.7 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
51
52
53
54
55
56
57
# setup.py ---
#
# Filename: setup.py
# Description:
#
# Author: Yu Lu
# Email: yulu@utexas.edu
# Github: https://github.com/SuperYuLu
#
# Created: Sat Jul 21 10:46:04 2018 (-0500)
# Version:
# Last-Updated: Wed Aug 22 11:51:24 2018 (-0500)
# By: yulu
# Update #: 85
#
from setuptools import setup
with open("README.rst") as f:
README = f.read()
setup(
name = 'scibeam',
version = '0.1.1',
author = 'Yu Lu',
author_email = 'yulu@utexas.edu',
url = 'https://github.com/SuperYuLu/SciBeam',
packages = ['scibeam', 'scibeam.tests', 'scibeam.core', 'scibeam.util'],
license = 'LICENSE.txt',
description = 'Library for scientific time series dat aanalysis and visualization on beam measurement',
long_description = README,
#long_description_content_type='text/markdown',
install_requires = ['numpy',
'pandas',
'scipy',
'matplotlib'],
#test_suite = 'nose.collector',
#test_suite = 'tests',
#tests_require = ['nose'],
classifiers = [
'Programming Language :: Python :: 3.6',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: MIT License',
],
keywords = 'physics time-series data-analysis pandas',
package_data = {'scibeam': ['data/examples/time_series_1D/single_time_series.lvm',
'data/examples/time_series_2D/*.lvm',
'data/test/time_series_1D/single_time_series.lvm',
'data/test/time_series_2D/*.lvm'
]},
)