-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shumo Chu
committed
Feb 10, 2020
1 parent
e736431
commit 772d431
Showing
1 changed file
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
) |