-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 774 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 774 Bytes
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
from setuptools import setup
from os import environ
VERSION= environ.get('NC5NG_VERSION', "0.0.4")
PKG_INFO= {
'packages':['nc5ng.gmt'],
'name':"nc5ng-common",
'version':VERSION,
'description': "Python common packages for nc5ng",
'long_description': """Common utilities shared by other packages.
installed by default with target `nc5ng`
For More Information See: https://nc5ng.org/projects/nc5ng-python
For Documentation See: https://docs.nc5ng.org/latest
""",
'author':"Andrey Shmakov",
'author_email':"akshmakov@gmail.com",
'url':"https://nc5ng.org/projects/nc5ng-python",
'download_url':"https://github.com/nc5ng/nc5ng-python-common",
'install_requires':[
'numpy'
],
'license':"MIT"
}
setup(**PKG_INFO)