Skip to content

Commit 1145ff3

Browse files
committed
setup.py: Release 1.0.
1 parent ae54e19 commit 1145ff3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import sys
2+
from setuptools import setup
3+
4+
5+
if sys.version_info < (3, 0):
6+
sys.stderr.write("Sorry, Python < 3.0 is not supported\n")
7+
sys.exit(1)
8+
9+
10+
setup(name='python-compiler',
11+
version='1.0',
12+
description="""Python bytecode compiler written in Python""",
13+
long_description=open('README.md').read(),
14+
long_description_content_type='text/markdown',
15+
url='https://github.com/pfalcon/python-compiler',
16+
author='Python Developers',
17+
maintainer='Paul Sokolovsky',
18+
maintainer_email='[email protected]',
19+
license='Python',
20+
packages=['compiler'])

0 commit comments

Comments
 (0)