Skip to content

Commit

Permalink
Prepare for v2.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgao6767 committed Oct 1, 2023
1 parent 5cddc14 commit 4cbddcf
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
recursive-include src/frds/datasets *.zip
recursive-include src/frds *.cpp
recursive-include src/frds *.hpp
5 changes: 4 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ of ready-to-use methods for computing a wide array of measures in the literature
It is developed by Dr. `Mingze Gao <http://mingze-gao.com>`_ from the University of Sydney, as
a personal project during his postdoctoral research fellowship.

|GitHub license| |PyPI Downloads| |Tests|
|GitHub license| |PyPI Downloads| |Tests| |PyPI Version|

.. |GitHub license| image:: https://img.shields.io/github/license/mgao6767/frds?color=blue
:target: https://github.com/mgao6767/frds/blob/master/LICENSE
Expand All @@ -20,6 +20,9 @@ a personal project during his postdoctoral research fellowship.
.. |Tests| image:: https://github.com/mgao6767/frds/actions/workflows/test.yml/badge.svg
:target: https://github.com/mgao6767/frds/actions/workflows/test.yml

.. |PyPI Version| image:: https://badge.fury.io/py/frds.svg
:target: https://badge.fury.io/py/frds

.. |frds| replace:: :code:`frds`

.. important::
Expand Down
35 changes: 15 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,31 +1,26 @@
[project]
name = "frds"
version = "2.0.0rc1"
authors = [
{ name="Mingze Gao", email="adrian.gao@outlook.com" },
]
authors = [{ name = "Mingze Gao", email = "adrian.gao@outlook.com" }]
description = "Financial Research Data Services"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
]
license = {text = "MIT License"}
dependencies = [
"arch",
"numpy",
"pandas",
"scipy",
"matplotlib"
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
]
license = { text = "MIT License" }
dependencies = ["arch", "numpy", "pandas", "scipy", "matplotlib"]


[project.urls]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,6 @@
setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
ext_modules=ext_modules,
)

0 comments on commit 4cbddcf

Please sign in to comment.