Skip to content
Snippets Groups Projects
Select Git revision
  • 0049a93c27f3eb13ad7e8cc4c302dad94bbae0f5
  • main default protected
  • release/1.1
  • encrypt_comments
  • mnemonic_dewif
  • authors_rules
  • 0.14
  • rtd
  • 1.2.1 protected
  • 1.2.0 protected
  • 1.1.1 protected
  • 1.1.0 protected
  • 1.0.0 protected
  • 1.0.0rc1 protected
  • 1.0.0rc0 protected
  • 1.0.0-rc protected
  • 0.62.0 protected
  • 0.61.0 protected
  • 0.60.1 protected
  • 0.58.1 protected
  • 0.60.0 protected
  • 0.58.0 protected
  • 0.57.0 protected
  • 0.56.0 protected
  • 0.55.1 protected
  • 0.55.0 protected
  • 0.54.3 protected
  • 0.54.2 protected
28 results

send_transaction.py

Blame
  • setup.py 1.21 KiB
    from setuptools import setup, find_packages
    
    with open("README.md", "r") as fh:
        long_description = fh.read()
    
    setup(
        name="silkaj",
        version="0.7.1",
        author="Moul",
        author_email="moul@moul.re",
        description="Command line client for Duniter",
        long_description=long_description,
        long_description_content_type="text/markdown",
        url="https://git.duniter.org/clients/python/silkaj",
        license="GNU AGPLv3",
        packages=find_packages(),
        keywords="g1 duniter cryptocurrency librecurrency RTM",
        classifiers=(
            "Programming Language :: Python :: 3.7",
            "Programming Language :: Python :: 3.6",
            "Programming Language :: Python :: 3.5",
            "Programming Language :: Python :: 3 :: Only",
            "Development Status :: 5 - Production/Stable",
            "License :: OSI Approved :: GNU Affero General Public License v3",
            "Operating System :: OS Independent",
            "Environment :: Console",
            "Intended Audience :: End Users/Desktop",
            "Natural Language :: English",
        ),
        install_requires=[
            "Click",
            "duniterpy==0.54.3",
            "ipaddress",
            "texttable",
            "tabulate",
            "pynacl",
        ],
        scripts=["bin/silkaj"],
    )