forked from hongyuchen1030/uxarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (44 loc) · 1.65 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
#''' setup.py is needed, but only to make namespaces happen
from pathlib import Path
from setuptools import find_packages, setup
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().strip().split('\n')
#''' moved into function, can now be used other places
def version():
for line in open('meta.yaml').readlines():
index = line.find('set version')
if index > -1:
return line[index + 15:].replace('\" %}', '').strip()
setup(
name='uxarray',
version=version(),
maintainer='UXARRAY',
maintainer_email='',
python_requires='>=3.9',
install_requires=requirements,
description=
"""Unstructured grid model reading and recognizing with xarray.""",
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering',
],
include_package_data=True,
packages=find_packages(exclude=["docs", "test", "docs.*", "test.*"]),
# namespace_packages=['UXARRAY'],
url='https://github.com/UXARRAY/uxarray',
project_urls={
# 'Documentation': 'https://uxarray.readthedocs.io',
'Source': 'https://github.com/UXARRAY/uxarray',
'Tracker': 'https://github.com/UXARRAY/uxarray/issues',
},
zip_safe=False)