Skip to content
Snippets Groups Projects
Commit 55ff3b4f authored by Moul's avatar Moul
Browse files

[mod] #66: Remove setup.{py,cfg} and requirements{,_deploy,_dev}.txt

parent 21bd48e6
No related branches found
No related tags found
No related merge requests found
aiohttp >= 3.3.2
pylibscrypt >= 1.7.1
libnacl >= 1.6.1
base58 >= 1.0.0
jsonschema >= 2.6.0
pypeg2 >= 2.15.2
attr >= 0.3.1
pyaes >= 1.6.1
\ No newline at end of file
setuptools
wheel
twine
\ No newline at end of file
mypy
pylint
black
sphinx
sphinx_rtd_theme
from setuptools import setup, find_packages
import duniterpy
import os
import re
def which(program):
"""
Detect whether or not a program is installed.
Thanks to http://stackoverflow.com/a/377028/70191
"""
def is_exe(fpath):
return os.path.exists(fpath) and os.access(fpath, os.X_OK)
fpath, _ = os.path.split(program)
if fpath:
if is_exe(program):
return program
else:
for path in os.environ['PATH'].split(os.pathsep):
exe_file = os.path.join(path, program)
if is_exe(exe_file):
return exe_file
return None
EDITABLE_REQUIREMENT = re.compile(
r'^-e (?P<link>(?P<vcs>git|svn|hg|bzr).+#egg=(?P<package>.+)-(?P<version>\d(?:\.\d)*))$'
)
install_requires = []
dependency_links = []
for requirement in (l.strip() for l in open('requirements.txt')):
match = EDITABLE_REQUIREMENT.match(requirement)
if match:
assert which(match.group('vcs')) is not None, \
"VCS '%(vcs)s' must be installed in order to install %(link)s" % match.groupdict()
install_requires.append("%(package)s==%(version)s" % match.groupdict())
dependency_links.append(match.group('link'))
else:
install_requires.append(requirement)
setup(
name='duniterpy',
version="0.55.1",
packages=find_packages(exclude=["tests*"]),
package_data={"duniterpy": ["py.typed"]},
author="inso, canercanda, s_b, vit, Moul",
author_email="insomniak.fr@gmail.com",
description="A python library for [duniter](https://git.duniter.org/nodes/typescript/duniter) client developers",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
# Active la prise en compte du fichier MANIFEST.in
include_package_data=True,
url='https://git.duniter.org/clients/python/duniterpy',
test_suite="tests",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries",
"Intended Audience :: Developers",
],
install_requires=install_requires,
dependency_links=dependency_links
)
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