-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsetup.py
55 lines (50 loc) · 1.42 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
__version__ = '2.0.42'
with open("README.md", "r") as fh:
long_desc = fh.read()
setup(
name='lamden',
version=__version__,
packages=find_packages(),
install_requires=[
"chardet==3.0.4",
"ujson==1.35", # locking dep for websockets
"idna==2.10", # locking dep for sanic
"typing_extensions==3.10.0.0", # locking dep for pyzmq
"bidict==0.21.4", # locking deb for socketio
"multidict==4.7.6", # locking dep for sanic
"yarl==1.4.2", # locking dep for python-socketio
"uvloop==0.14.0",
"aiofiles==22.1.0",
"sanic==20.6.3",
"coloredlogs==15.0.1",
"pyzmq==23.1.0",
"requests==2.25.1",
"checksumdir==1.2.0",
"pynacl==1.5.0",
"stdlib_list==0.8.0",
"psutil==5.9.1",
"python-socketio==5.5.2",
"aiohttp==3.8.1",
"iso8601"
],
entry_points={
'console_scripts': [
'lamden=lamden.cli.cmd:main'
],
},
zip_safe=False,
description="Lamden Blockchain",
long_description=long_desc,
long_description_content_type="text/markdown",
url='https://github.com/Lamden/lamden',
author='Lamden',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 3.6',
],
python_requires='>=3.6.5',
package_data={
"": ["*.json"]
}
)