Skip to content

Commit 7ff1069

Browse files
authored
Merge pull request #90 from ldeo-glaciology/update_packge_build_ymls
just use setup.py
2 parents 9115e46 + 3e59619 commit 7ff1069

File tree

2 files changed

+45
-6
lines changed

2 files changed

+45
-6
lines changed

setup.py

Lines changed: 45 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,49 @@
1-
from setuptools import setup
1+
#from setuptools import setup
22

33

4+
#setup(
5+
# use_scm_version={
6+
# "write_to": "xapres/_version.py",
7+
# "write_to_template": '__version__ = "{version}"',
8+
# "tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
9+
# }
10+
#)
11+
12+
from setuptools import setup, find_packages
13+
414
setup(
5-
use_scm_version={
6-
"write_to": "xapres/_version.py",
7-
"write_to_template": '__version__ = "{version}"',
8-
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
9-
}
15+
name='xapres',
16+
version='0.14.6',
17+
author='ldeo_glaciology',
18+
author_email='j.kingslake@columbia.edu',
19+
description='A package for processing data from the Autonomous phase-sensitive Radio-Echo Sounder (ApRES) using xarray.',
20+
long_description=open('README.md').read(),
21+
long_description_content_type='text/markdown',
22+
url='https://github.com/ldeo-glaciology/xapres',
23+
license='MIT',
24+
license_files=('LICENSE.txt',),
25+
classifiers=[
26+
'Development Status :: 2 - Pre-Alpha',
27+
'Topic :: Scientific/Engineering',
28+
'Intended Audience :: Science/Research',
29+
'Operating System :: OS Independent',
30+
'Programming Language :: Python',
31+
'Programming Language :: Python :: 3',
32+
'Programming Language :: Python :: 3.6',
33+
'Programming Language :: Python :: 3.7',
34+
'Programming Language :: Python :: 3.8',
35+
'License :: OSI Approved :: MIT License',
36+
],
37+
install_requires=[
38+
'numpy',
39+
'requests',
40+
'xarray',
41+
'gcsfs',
42+
'fsspec',
43+
'pandas',
44+
'tqdm',
45+
],
46+
python_requires='>=3.6',
47+
packages=find_packages(exclude=['docs', 'data']),
48+
zip_safe=False,
1049
)
File renamed without changes.

0 commit comments

Comments
 (0)