funga/setup.py

40 lines
958 B
Python
Raw Permalink Normal View History

2020-08-08 10:45:37 +02:00
from setuptools import setup
2020-10-18 10:32:23 +02:00
f = open('README.md', 'r')
long_description = f.read()
f.close()
2020-12-17 11:10:13 +01:00
requirements = []
f = open('requirements.txt', 'r')
while True:
l = f.readline()
if l == '':
break
requirements.append(l.rstrip())
f.close()
test_requirements = []
f = open('test_requirements.txt', 'r')
while True:
l = f.readline()
if l == '':
break
test_requirements.append(l.rstrip())
f.close()
2020-08-08 10:45:37 +02:00
setup(
name="funga",
2021-11-15 14:30:09 +01:00
version="0.5.1",
2020-08-08 10:45:37 +02:00
description="A signer and keystore daemon and library for cryptocurrency software development",
author="Louis Holbrook",
author_email="dev@holbrook.no",
2020-08-08 11:33:15 +02:00
packages=[
2021-10-10 13:46:50 +02:00
'funga',
2020-08-08 11:33:15 +02:00
],
2020-12-17 11:10:13 +01:00
install_requires=requirements,
tests_require=test_requirements,
2020-10-18 10:32:23 +02:00
long_description=long_description,
long_description_content_type='text/markdown',
2021-10-10 18:11:35 +02:00
url='https://gitlab.com/chaintool/funga',
2020-08-08 10:45:37 +02:00
)