We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae54e19 commit 1145ff3Copy full SHA for 1145ff3
setup.py
@@ -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