-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
35 lines (28 loc) · 1.04 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
#!/usr/bin/env python3
"""The setup script."""
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')
setup(
maintainer='NCAR XDev Team',
maintainer_email='xdev@ucar.edu',
description="Utilities for expanding dask-jobqueue with appropriate settings for NCAR's clusters",
install_requires=requirements,
license='Apache License 2.0',
python_requires='>=3.9',
long_description_content_type='text/markdown',
long_description=long_description,
include_package_data=True,
name='ncar-jobqueue',
packages=find_packages(),
url='https://github.com/NCAR/ncar-jobqueue',
project_urls={
'Documentation': 'https://github.com/NCAR/ncar-jobqueue',
'Source': 'https://github.com/NCAR/ncar-jobqueue',
'Tracker': 'https://github.com/NCAR/ncar-jobqueue',
},
use_scm_version={'version_scheme': 'post-release', 'local_scheme': 'dirty-tag'},
zip_safe=False,
)