-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (46 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
"""A setuptools based setup module.
See:
https://packaging.python.org/en/latest/distributing.html
"""
from __future__ import print_function
from setuptools import setup,find_packages
from codecs import open
from os import path
from setuptools.dist import Distribution
import sys
proj_dir = path.abspath(path.dirname(__file__))
class BinaryDistribution(Distribution):
def is_pure(self):
return False
def has_ext_modules(self):
return True
with open(path.join(proj_dir,'README.md'), encoding='utf-8') as fid:
long_description = fid.read()
setup(
name='dssvue',
version = '0.1',
description ='GUI for HEC-DSS database file',
long_description = long_description,
url = '',
author = 'Gyan Basyal',
author_email = 'gyanBasyalz@gmail.com',
license = 'MIT',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Water resources engineers :: Developers',
'Operating System :: Windows',
'Programming Language :: Python :: 3',
],
packages = find_packages(),
package_data = {'':['*.txt','*.md',
'LICENSE',
'ui/*',
'*.py',
'examples/*']},
include_package_data = True,
data_files=[],
distclass = BinaryDistribution,
install_requires = ['numpy', 'pandas', 'affine','pyqt5','pyqtgraph'],
python_requires='>=3.6, <3.8',
zip_safe = False,
)