Skip to content
Open
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
44 changes: 44 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "pyRofex"
version = "0.5.1"
description = "Python connector for ROFEX's Rest and Websocket APIs."
readme = "README.rst"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "Genaro Vogelius", email = "genagevo@gmail.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development",
]
dependencies = [
"httpx>=0.28.1",
"simplejson>=3.20.0",
"websocket-client>=1.9.0",
]

[project.urls]
Homepage = "https://github.com/GenaroVogelius/pyRofex"

[tool.setuptools]
package-dir = {"" = "src"}

[tool.setuptools.packages.find]
where = ["src"]
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

35 changes: 2 additions & 33 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,3 @@
import setuptools
from setuptools import setup

with open("README.rst", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="pyRofex",
version="0.5.0",
author="Franco Zanuso",
author_email="francozanuso89@gmail.com",
description="Python connector for ROFEX's Rest and Websocket APIs.",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/gruporofex/pyRofex",
packages=setuptools.find_packages(where='src'),
package_dir={'': 'src'},
install_requires=[
'requests>=2.20.0',
'simplejson>=3.10.0',
'enum34>=1.1.6',
'websocket-client>=1.6.4',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development"
],
)
setup()
Loading