File: setup.py

package info (click to toggle)
python-moreorless 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 184 kB
  • sloc: python: 403; makefile: 40; sh: 11
file content (22 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (2)
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',
      ])