forked from GeoPyTool/GeoPyTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (43 loc) · 1.44 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
from geopytool.ImportDependence import *
from geopytool.CustomClass import *
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
except:
README = 'https://github.com/GeoPyTool/GeoPyTool/blob/master/README.md'
setup(name='geopytool',
version= version,
description='a tool for daily geology related task. visit geopytool.com for further information',
longdescription=README,
author='cycleuser',
author_email='cycleuser@cycleuser.org',
url='https://github.com/GeoPyTool/GeoPyTool',
packages=['geopytool'],
package_data={
'geopytool': ['*.py','*.txt','*.png','*.qm','*.ttf','*.ini','*.md'],},
include_package_data=True,
install_requires=[
'cython',
'numpy',
'pandas',
'scipy',
'xlrd',
'openpyxl',
'matplotlib',
'BeautifulSoup4',
'requests',
'PyQt5',
'scikit-image',
'torch',
'keras',
'tqdm',
'gym',
],
)