1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Subject: support building without Poetry
Add setup.py generated with dephell.
Author: moul <moul@moul.re>
Last-Update: 2020-09-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,41 @@
+# -*- 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.60.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.fr@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', 'pypeg2==2.*,>=2.15.2'],
+ extras_require={"dev": ["black==20.*,>=20.8.0.b1; 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"]},
+)
|