specter-desktop/setup.py
Kim Neunert 556ec5f961
Releasing procedure with pip (#69)
* automate pip-packages-gen + upload for gittags
release documentation
proper package including and  static + templates

* Change import- and start  logic, removed cli.py

* project-renaming to cryptoadvance.specter
propoer packaging
include proper dependencies

* Adding requirements.txt

* Specify maintainers and thanks to contributors

* Removing test-url for pip-uload. This is now live!
2020-02-20 13:00:53 +01:00

36 lines
1.1 KiB
Python

from glob import glob
from setuptools import find_packages, setup
with open('requirements.txt') as f:
install_reqs = f.read().strip().split('\n')
reqs = [str(ir) for ir in install_reqs if not ir.startswith("#") ]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="cryptoadvance.specter",
version="v0.0.11",
author="Stepan Snigirev, Kim Neunert",
author_email="snigirev.stepan@gmail.com, kim.neunert@gmail.com",
description="A GUI for Bitcoin Core optimised to work with airgapped hardware wallets",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cryptoadvance/specter-desktop",
packages=find_packages('src'),
package_dir={'': 'src'},
# take METADATA.in into account, include that stuff as well (static/templates)
include_package_data=True,
install_requires=reqs,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Flask",
],
python_requires='>=3.6',
)