Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shumo Chu committed Feb 10, 2020
1 parent e736431 commit 772d431
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
#!/usr/bin/env python3

from setuptools import setup, find_packages
import setuptools

setup(name='pyteal', version='0.1', packages=find_packages())
with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="pyteal", # Replace with your own username
version="0.5.0",
author="Shumo Chu",
author_email="shumo.chu@gmail.com",
description="Algorand Smart Contracts in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/algorand/pyteal",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)

0 comments on commit 772d431

Please sign in to comment.