-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathsetup.py
27 lines (25 loc) · 926 Bytes
/
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as file:
long_description = file.read()
setup(
name='goto-statement',
version='1.2',
url='https://github.com/snoack/python-goto/',
description='A function decorator that rewrites the bytecode, '
'enabling goto in Python',
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=['goto'],
author='Sebastian Noack',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)