File: setup.py

package info (click to toggle)
python-mutf8 1.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 124 kB
  • sloc: python: 342; ansic: 207; makefile: 3
file content (43 lines) | stat: -rw-r--r-- 1,093 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import os
import os.path

from setuptools import setup, find_packages, Extension


root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, 'README.md'), 'rb') as readme:
    long_description = readme.read().decode('utf-8')


setup(
    name='mutf8',
    packages=find_packages(),
    version='1.0.6',
    description='Fast MUTF-8 encoder & decoder',
    long_description=long_description,
    long_description_content_type='text/markdown',
    author='Tyler Kennedy',
    author_email='tk@tkte.ch',
    url='http://github.com/TkTech/mutf8',
    keywords=['mutf-8', 'cesu-8', 'jvm'],
    classifiers=[
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Intended Audience :: Developers',
    ],
    extras_require={
        'test': [
            'pytest',
            'pytest-benchmark'
        ]
    },
    ext_modules=[
        Extension(
            'mutf8.cmutf8',
            ['mutf8/cmutf8.c'],
            language='c',
            optional=True
        )
    ]
)