-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 987 Bytes
/
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
from setuptools import setup, find_packages
# read the contents of your README file
from pathlib import Path
cwd = Path(__file__).parent
long_description = (cwd / 'README.md').read_text()
setup(
name='algorig',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['algorig'],
version='0.1.2',
python_requires='>=3.10',
description='algorand development rig',
author='Kadir Pekel',
author_email='[email protected]',
packages=find_packages(include=['algorig']),
url='https://github.com/kadirpekel/algorig',
install_requires=[
'py-algorand-sdk>=2.0.0',
'pyteal==0.21.0',
'komandr>=2.0.1',
'gdparser>=0.0.2'
],
extras_require={
'dev': [
'pytest',
'flake8'
]
},
tests_require=[
'pytest'
],
entry_points={
'console_scripts': [
'rig=algorig.cli:main',
],
},
)