File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import setup , find_packages
4
4
5
- with open ("your_package /__init__.py" , "r" ) as f :
5
+ with open ("gempy_plugins /__init__.py" , "r" ) as f :
6
6
for line in f :
7
7
if line .startswith ("__version__" ):
8
8
version = line .split ("=" )[1 ].strip ().strip ("'" )
@@ -15,19 +15,14 @@ def read_requirements(file_name):
15
15
16
16
17
17
setup (
18
- name = 'gempy_viewer ' ,
18
+ name = 'gempy_plugins ' ,
19
19
version = version ,
20
20
packages = find_packages (),
21
21
url = '' ,
22
22
license = 'EUPL' ,
23
23
author = 'Miguel de la Varga' ,
24
24
author_email = "miguel@terranigma-solutions.com" ,
25
- description = 'Viewer for the geological modeling package GemPy' ,
26
- install_requires = read_requirements ("requirements.txt" ),
27
- extras_require = {
28
- "opt" : read_requirements ("optional_requirements.txt" ),
29
- "dev" : read_requirements ("dev-requirements.txt" ),
30
- },
25
+ description = 'Extra plugins for the geological modeling package GemPy' ,
31
26
classifiers = [
32
27
'Development Status :: 3 - Alpha' ,
33
28
'Intended Audience :: Science/Research' ,
You can’t perform that action at this time.
0 commit comments