Here is the setup.py that I generated with dephell:

cat setup.py

# -*- coding: utf-8 -*-

# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# <https://github.com/dephell/dephell>

try:
   from setuptools import setup
except ImportError:
   from distutils.core import setup


import os.path

readme = ''
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, 'README.rst')
if os.path.exists(readme_path):
   with open(readme_path, 'rb') as stream:
       readme = stream.read().decode('utf8')


setup(
   long_description=readme,
   name='duniterpy',
   version='0.57.0',
   description='Python library for developers of Duniter clients',
   python_requires='==3.*,>=3.5.3',
project_urls={"documentation": "<https://clients.duniter.io/python/duniterpy/index.html>", "homepage": "", "repository": "<https://git.duniter.org/clients/python/duniterpy>"},
   author='inso',
   author_email='insomniak...@gmail.com',
   maintainer='canercandan',
   license='GPL-3.0-or-later',
   keywords='g1 duniter cryptocurrency librecurrency library',
classifiers=['Development Status :: 5 - Production/Stable', 'Natural Language :: English', 'Operating System :: OS Independent', 'Topic :: Software Development :: Libraries', 'Intended Audience :: Developers'], packages=['duniterpy', 'duniterpy.api', 'duniterpy.api.bma', 'duniterpy.api.elasticsearch', 'duniterpy.api.ws2p', 'duniterpy.documents', 'duniterpy.documents.ws2p', 'duniterpy.grammars', 'duniterpy.helpers', 'duniterpy.key'],
   package_dir={"": "."},
   package_data={"duniterpy": ["*.typed"]},
install_requires=['aiohttp==3.*,>=3.6.1', 'attrs==19.*,>=19.3.0', 'base58==2.*,>=2.0.0', 'jsonschema==3.*,>=3.0.2', 'libnacl==1.*,>=1.6.1', 'pyaes==1.*,>=1.6.1', 'pylibscrypt==1.*,>=1.8.0', 'pypeg2==2.*,>=2.15.2'], extras_require={"dev": ["black==19.*,>=19.3.0.b0; python_version == \"3.*\" and python_version >= \"3.6.0\"", "mypy==0.*,>=0.730.0", "pylint==2.*,>=2.4.2", "sphinx==3.*,>=3.0.2", "sphinx-rtd-theme==0.*,>=0.4.3"]},
)


On So, Sep 6, 2020 at 15:08, Jonas Smedegaard <d...@jones.dk> wrote:
Quoting moul (2020-09-06 14:41:46)
 What I can easily do is generate a setup.py from the pyproject.toml.
 There is dephell which does that:
 <<https://dephell.readthedocs.io/cmd-deps-convert.html>>

That would be helpdul if you cold provide such pre-generated file.

Then I could include that as a patch for the Debian package - as
workaround until Poetry is in Debian.


 - Jonas

--
 * Jonas Smedegaard - idealist & Internet-arkitekt
 * Tlf.: +45 40843136  Website: <http://dr.jones.dk/>

 [x] quote me freely  [ ] ask before reusing  [ ] keep private

Reply via email to