forked from Mego/Seriously
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (27 loc) · 976 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (27 loc) · 976 Bytes
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
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python3
"""Seriously - a Python-based golfing language"""
from setuptools import setup, find_packages
setup(
name='seriously',
version='2.0.32',
description='A Python-based golfing language',
long_description='Seriously is a Python-based golfing language. See the GitHub page for more details.',
url='https://github.com/Mego/Seriously',
author='Mego',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
packages = ['seriously', 'lib'],
keywords='codegolf recreational',
entry_points={
'console_scripts': [
'seriously=seriously.seriously:main',
],
},
)