Skip to content
Snippets Groups Projects
Commit 4076a882 authored by Moul's avatar Moul
Browse files

[mod] #182: Delete Pipfiles and setup.py

parent 46abb5d0
No related branches found
No related tags found
No related merge requests found
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
ipaddress = "*"
tabulate = "*"
PyNaCl = "*"
e1839a8 = {path = ".",editable = true}
duniterpy = "*"
click = "*"
texttable = "*"
[dev-packages]
pre-commit = "*"
black = "*"
setuptools = "*"
wheel = "*"
twine = "*"
pytest = "*"
coverage = "*"
pytest-cov = "*"
pytest-asyncio = "*"
[requires]
python_version = "3.7"
[pipenv]
allow_prereleases = true
This diff is collapsed.
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"],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment