File: setup.py

package info (click to toggle)
xmodem 0.4.6%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 192 kB
  • sloc: python: 1,066; makefile: 9
file content (21 lines) | stat: -rw-r--r-- 614 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
import os
import codecs
from setuptools import setup

HERE = os.path.dirname(__file__)
README_RST = os.path.join(HERE, 'README.rst')

setup(
    name='xmodem',
    version='0.4.6',
    author='Wijnand Modderman, Jeff Quast, Kris Hardy',
    author_email='maze@pyth0n.org',
    description=('XMODEM protocol implementation.'),
    url='https://github.com/tehmaze/xmodem',
    long_description = codecs.open(README_RST, 'rb', 'utf8').read(),
    license='MIT',
    keywords='xmodem protocol',
    packages=['xmodem'],
    package_data={'': ['doc/*.TXT', 'doc/*.txt', 'README.rst']},
    include_package_data=True,
)