-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
executable file
·47 lines (38 loc) · 1.68 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
#!/usr/bin/env python
from setuptools import setup
import os
import sys
if sys.version_info < (3, 5):
sys.exit('Sorry, Python < 3.5 is not supported.')
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open('vibrationtesting/__init__.py', 'rb') as fid:
for line in fid:
line = line.decode('utf-8')
if line.startswith('__version__'):
version = line.strip().split()[-1][1:-1]
break
download_url = ('https://github.com/Vibration-Testing/vibrationtesting/\
blob/master/dist/vibrationtesting-' + version + '.whl')
setup(name='vibrationtesting',
version=version,
description=('Signal processing, modal analysis, plotting, and system\
identification for vibrating systems'),
author=u'Joseph C. Slater',
author_email='[email protected]',
url='https://github.com/Vibration-Testing/vibrationtesting',
packages=['vibrationtesting'],
package_data={'vibrationtesting': ['../readme.rst', 'data/*.mat'],
'': ['readme.rst']},
long_description=read('readme.rst'),
keywords=['vibration', 'mechanical engineering', 'testing',
'civil engineering', 'modal analysis'],
install_requires=['numpy', 'scipy', 'matplotlib'],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)
# https://docs.python.org/3/distutils/setupscript.html#additional-meta-data