-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (24 loc) · 805 Bytes
/
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
"""funterface setup script."""
import os
from setuptools import setup
def read(file_name):
"""Read the content of a file adjacent to this script."""
with open(os.path.join(os.path.dirname(__file__), file_name)) as f:
return f.read()
setup(
name='funterface',
version='1.0.1',
author='Fergal Hainey',
author_email='fergal+funterface@bfot.co.uk',
description='A fun way to implement class based interfaces.',
license='Apache-2.0',
keywords='decorator interface',
url='https://github.com/Riprock/funterface',
py_modules=['funterface'],
long_description=read('README.rst'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
)