|
13 | 13 | history = history_file.read() |
14 | 14 |
|
15 | 15 | # https://packaging.python.org/discussions/install-requires-vs-requirements/#install-requires |
16 | | -requirements: List[str] = ["xarray", "pandas", "numpy"] |
17 | | - |
18 | | -setup_requirements: List[str] = [] |
19 | | - |
20 | | -test_requirements = ["pytest>=3"] |
| 16 | +install_requires: List[str] = [ |
| 17 | + "cf_xarray", |
| 18 | + "dask", |
| 19 | + "numpy", |
| 20 | + "pandas", |
| 21 | + "xarray", |
| 22 | + "typing_extensions", |
| 23 | +] |
| 24 | +test_requires = ["pytest>=3"] |
21 | 25 |
|
22 | 26 | setup( |
23 | | - author="Tom Vo", |
24 | | - |
| 27 | + author="XCDAT developers", |
25 | 28 | python_requires=">=3.5", |
26 | 29 | classifiers=[ |
27 | 30 | "Development Status :: 2 - Pre-Alpha", |
28 | 31 | "Intended Audience :: Developers", |
29 | | - "License :: OSI Approved :: MIT License", |
| 32 | + "License :: OSI Approved :: Apache-2.0 License", |
30 | 33 | "Natural Language :: English", |
31 | 34 | "Programming Language :: Python :: 3", |
32 | 35 | "Programming Language :: Python :: 3.5", |
|
35 | 38 | "Programming Language :: Python :: 3.8", |
36 | 39 | ], |
37 | 40 | description="Xarray Extended with Climate Data Analysis Tools", |
38 | | - install_requires=requirements, |
39 | | - license="MIT license", |
| 41 | + install_requires=install_requires, |
| 42 | + license="Apache-2.0", |
40 | 43 | long_description=readme + "\n\n" + history, |
41 | 44 | include_package_data=True, |
42 | 45 | keywords="xcdat", |
43 | 46 | name="xcdat", |
44 | 47 | packages=find_packages(include=["xcdat", "xcdat.*"]), |
45 | | - setup_requires=setup_requirements, |
46 | 48 | test_suite="tests", |
47 | | - tests_require=test_requirements, |
| 49 | + tests_require=test_requires, |
48 | 50 | url="https://github.com/XCDAT/xcdat", |
49 | 51 | version="0.1.0", |
50 | 52 | zip_safe=False, |
|
0 commit comments