-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.02 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import setuptools
from leer.version import VERSION
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="leer",
version= VERSION,
author="Evil Morty, Crez Khansick, Sark Czenchi",
author_email="TetsuwanAtomu@tuta.io",
description="Leer cryptocurrency (alpha testing)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/WTRMQDev/leer",
packages=setuptools.find_packages(exclude=["example", ".git"]),
package_data = {'leer.rpc':['web_wallet/*']},
include_package_data = True,
install_requires=['setuptools', 'wheel', 'lnoise', 'secp256k1_zkp>=0.14.3', 'lmdb', 'aiohttp', 'jsonrpcserver==3.5.6', 'aiohttp_remotes', 'leer_vm>=1.1', 'progpow>=0.4'],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)