-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
32 lines (28 loc) · 1.05 KB
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
from itertools import takewhile
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as f:
readme = str.join('', takewhile(lambda l: not l.startswith('Installation'), f.readlines()[15:]))
setup(
name = 'overloading',
version = '0.5.0',
description = 'Function overloading for Python 3',
long_description = '\n' + readme,
url = 'https://github.com/bintoro/overloading.py',
author = 'Kalle Tuure',
author_email = 'kalle@goodtimes.fi',
license = 'MIT',
py_modules = ['overloading'],
install_requires = [],
keywords = 'overload function method dispatch',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'License :: OSI Approved :: MIT License'
]
)