-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 986 Bytes
/
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
# Third party imports.
import setuptools
# Module dunder definitions.
# - Versioning system: {major_version}.{minor_version}.{patch}
__author__ = "Erick Edward Shepherd"
__version__ = "1.0.2"
setup_kwargs = {
"name" : "noaa_esrl_gmd_file_reader",
"version" : __version__,
"description" : ("A package for reading NOAA ESRL GMD ASCII data"
"files."),
"long_description" : "",
"author" : __author__,
"author_email" : "Contact@ErickShepherd.com",
"maintainer" : __author__,
"maintainer_email" : "Contact@ErickShepherd.com",
"url" : ("https://github.com/ErickShepherd/"
"noaa_esrl_gmd_file_reader"),
"download_url" : "",
"packages" : setuptools.find_packages(),
"license" : "AGPLv3"
}
if __name__ == "__main__":
setuptools.setup(**setup_kwargs)