-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 1.29 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
from setuptools import setup
from distutils.util import convert_path
# Hack to get around version dependency problems
# Taken from: https://stackoverflow.com/a/24517154
main_ns = {}
ver_path = convert_path('littlepython/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(name='littlepython',
version=main_ns["version"],
description='A Super Simplified Python with a Little Syntactic Sugar',
url='https://github.com/DerPferd/little-python',
author='Jonathan Beaulieu',
author_email='[email protected]',
license='MIT',
packages=['littlepython'],
zip_safe=False,
install_requires=['enum34;python_version<"3.4"'],
setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-timeout'],
scripts=['bin/littlepy'],
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
]
)