forked from Antfield-Creations/NDE-monitoring-file-formats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 722 Bytes
/
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
#!/usr/bin/env python
from configparser import ConfigParser
from distutils.core import setup
config = ConfigParser()
config.read('Pipfile')
dependencies = [dep.replace("\"", "") for dep in config['packages'].keys()]
print(dependencies)
setup(
name='bass_diffusion',
version='0.1.0',
description='Python implementation of the Bass diffusion model',
author="Rein van 't Veer",
author_email='[email protected]',
url='https://github.com/Antfield-Creations/NDE-monitoring-file-formats',
install_requires=dependencies,
packages=['bass_diffusion', 'nde_analysis'],
package_dir={
'bass_diffusion': './models',
'nde_analysis': './analysis',
}
)