1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='moreorless',
version='0.3.0',
description='difflib with simpler arguments, and enhanced \\n EOF support',
long_description=read('README.md'),
author='Tim Hatch',
url='https://github.com/thatch/moreorless',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
])
|