-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
49 lines (40 loc) · 1.38 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup
regexp = re.compile(r'.*__version__ = [\'\"](.*?)[\'\"]', re.S)
base_path = os.path.dirname(__file__)
init_file = os.path.join(base_path, 'pyEMA', '__init__.py')
with open(init_file, 'r') as f:
module_content = f.read()
match = regexp.match(module_content)
if match:
version = match.group(1)
else:
raise RuntimeError(
'Cannot find __version__ in {}'.format(init_file))
def parse_requirements(filename):
''' Load requirements from a pip requirements file '''
with open(filename, 'r') as fd:
lines = []
for line in fd:
line.strip()
if line and not line.startswith("#"):
lines.append(line)
return lines
requirements = parse_requirements('requirements.txt')
# Read the "README.rst" for project description
with open('README.rst', 'r') as f:
readme = f.read()
setup(name='pyEMA',
version=version,
author='Klemen Zaletelj, Domen Gorjup, Janko Slavič, Tomaž Bregar, Miha Pogačar, et al.',
maintainer='Janko Slavič',
maintainer_email='[email protected]',
description='Experimental and operational modal analysis.',
url='https://github.com/ladisk/pyEMA',
packages=['pyEMA'],
long_description=readme,
install_requires=requirements
)