-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (36 loc) · 1.17 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
from setuptools import setup
PACKAGE_NAME = "algojig"
VERSION = "0.0.3"
DESCRIPTION = "A testing jig for the Algorand Virtual Machine."
KEYWORDS = "algorand teal tealish"
LICENSE = "MIT"
URL = "https://github.com/Hipo/algojig"
setup(
name=PACKAGE_NAME,
version=VERSION,
description=DESCRIPTION,
url=URL,
platforms=['macos-arm64', 'linux-x64'],
keywords=KEYWORDS,
license=LICENSE,
packages=["algojig"],
package_data={"algojig": ["algojig*"]},
include_package_data=True,
install_requires=[
"py-algorand-sdk>=2.0.0",
],
has_ext_modules=lambda: True,
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)