-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
executable file
·38 lines (34 loc) · 1.08 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
"""Seriously - a Python-based golfing language"""
from setuptools import setup, find_packages
need_stats = False
try:
import statistics
except:
need_stats = True
setup(
name="seriously",
version="2.1.27",
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",
"Programming Language :: Python :: 3.6",
],
install_requires=["stats"] if need_stats else [],
packages=["seriously", "seriouslylib"],
keywords="codegolf recreational",
entry_points={
"console_scripts": [
"seriously=seriously:main",
],
},
)