-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathupload.py
25 lines (22 loc) · 1.05 KB
/
upload.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
import pipy
packpath = "pyncf.py"
pipy.define_upload(packpath,
author="Karim Bahgat",
author_email="[email protected]",
license="MIT",
name="Pyncf",
changes=["First alpha version"],
description="Pure Python NetCDF file reader and writer.",
url="https://github.com/karimbahgat/pyncf",
keywords="GIS spatial file format NetCDF",
classifiers=["License :: OSI Approved",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
'Intended Audience :: End Users/Desktop',
"Topic :: Scientific/Engineering :: GIS"],
)
#pipy.generate_docs(packpath)
#pypi.upload_test(packpath)
#pypi.upload(packpath)