Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ Dependencies
- `lxml: processing XML and HTML in Python <https://pypi.python.org/pypi/lxml>`_
- `numpy: Scientific Computing Tools For Python <https://www.numpy.org>`_
- `scipy: Scientific Tools for Python <https://www.scipy.org/>`_
- `setuptools_scm: manager for python package versions using scm metadata <https://pypi.org/project/setuptools-scm>`_

References
##########
Expand Down
1 change: 0 additions & 1 deletion doc/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ dependencies:
- python>=3.6
- python-dateutil
- scipy
- setuptools_scm
- sphinx
- sphinx-argparse>=0.4
- sphinxcontrib-bibtex
Expand Down
3 changes: 1 addition & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
copyright = f"2023\u2013{year}, Tyler C. Sutterley"
author = 'Tyler C. Sutterley'

# The full version, including alpha/beta/rc tags
# get semantic version from setuptools-scm
# software version
version = metadata["version"]
# append "v" before the version
release = f"v{version}"
Expand Down
1 change: 0 additions & 1 deletion doc/source/project/Citations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ This software is also dependent on other commonly used Python packages:
- `lxml: processing XML and HTML in Python <https://pypi.python.org/pypi/lxml>`_
- `numpy: Scientific Computing Tools For Python <https://www.numpy.org>`_
- `scipy: Scientific Tools for Python <https://www.scipy.org/>`_
- `setuptools_scm: manager for python package versions using scm metadata <https://pypi.org/project/setuptools-scm>`_

Data Citations
##############
Expand Down
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ dependencies:
- python>=3.6
- python-dateutil
- scipy
- setuptools_scm
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"

[project]
name = "timescale"
version = "0.0.9"
description = "Python tools for time and astronomical calculations"
keywords = [
"Time",
Expand Down Expand Up @@ -33,11 +34,8 @@ dependencies = [
"numpy",
"python-dateutil",
"scipy>=1.10.1",
"setuptools_scm",
]

dynamic = ["version"]

classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
Expand Down
19 changes: 0 additions & 19 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion timescale/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ def from_list(*args, **kwargs):
"""
return timescale.time.Timescale().from_list(*args, **kwargs)

# get semantic version from setuptools-scm
# get version information
__version__ = timescale.version.version
2 changes: 1 addition & 1 deletion timescale/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
u"""
version.py (11/2023)
Gets semantic version number and commit hash from setuptools-scm
Gets version number with importlib.metadata
"""
import importlib.metadata

Expand Down
1 change: 0 additions & 1 deletion version.txt

This file was deleted.

Loading