-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·31 lines (28 loc) · 1.03 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
#!/usr/bin/env python
# encoding: utf-8
# from __future__ import unicode_literals
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name='simplesuper',
description='Simpler way to call super methods without all the repetition',
long_description=open(os.path.join(here, 'Readme.md')).read(),
long_description_content_type='text/markdown',
version='1.0.10',
classifiers=[
"Programming Language :: Python :: 2",
"Topic :: Software Development",
"Topic :: Utilities",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: ISC License (ISCL)",
],
author='Martin Häcker, Robert Buchholz, Felix Schwarz',
license="ISC",
url='https://github.com/dwt/simplesuper',
keywords='python 2, super, convenience, api',
py_modules=['simplesuper'],
test_suite = "simplesuper",
)