-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·56 lines (43 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·56 lines (43 loc) · 1.35 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Oct 6 15:08:38 2020
@author: twguest
"""
from os import system
from distutils.core import setup
from distutils.command.install import install as DistutilsInstall
from setuptools import find_packages
class MyInstall(DistutilsInstall):
def run(self):
DistutilsInstall.run(self)
print("Installing FELpy")
print("****************")
setup(name='FELpy',
version='0.1.1',
ext_modules=[],
cmdclass={'install': MyInstall},
install_requires= ['h5py>=2.10.0',
'imageio>=2.8.0',
'ipython>=7.13.0',
'joblib>=0.14.1',
'jupyter_client>=6.1.2',
'jupyter_core>=4.6.3',
'matplotlib>=3.1.1',
'numpy>=1.18.1',
'pandas>=1.0.3',
'pillow>=7.0.0',
'pip>=20.0.2',
'seaborn',
'scikit-learn>=0.22.1',
'scipy>=1.4.1',
'tqdm>=4.46.0',
'wheel>=0.34.2'
],
packages=find_packages()
)
setup(
name='scripts',
scripts=['scripts/hello_world.sh',
'scripts/test_input.sh']
)