-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (39 loc) · 1.2 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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
long_description=readme,
name='python_magnetapi',
version='0.1.0',
python_requires='==3.*,>=3.8.0',
author='Christophe Trophime',
author_email='[email protected]',
maintainer='Christophe Trophime',
maintainer_email='[email protected]',
packages=find_packages(include=['python_magnetapi', 'python_magnetapi.*']),
description="Python Magnet CLI to interact with MagnetDB",
license="MIT license",
install_requires=[
'numpy==1.*,>=1.19.5',
'pandas==1.*,>=1.4.1',
'param==1.*,>=1.12.0',
'requests==2.*,>=2.27.1',
'rich==9.*,>=9.11.0',
'scipy==1.*,>=1.6.0',
'python-magnettools',
'python-magnetgeo',
'python-magnetrun'
],
entry_points={
'console_scripts': [
'python_magnetapi=python_magnetapi.cli:main',
],
},
)