File: setup.py

package info (click to toggle)
python-base36 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 132 kB
  • sloc: python: 65; makefile: 6; sh: 5
file content (31 lines) | stat: -rw-r--r-- 952 bytes parent folder | download
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
from setuptools import setup


with open('README.rst') as readme:
    next(readme)
    long_description = ''.join(readme).strip()


setup(
    name='base36',
    version='0.1.1',
    author='Jiangge Zhang',
    author_email='tonyseek@gmail.com',
    description='Yet another implementation for the positional numeral system '
                'using 36 as the radix.',
    long_description=long_description,
    url='https://github.com/tonyseek/python-base36',
    license='MIT',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'License :: OSI Approved :: MIT License',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3.3',
        'Programming Language :: Python :: 3.4',
        'Programming Language :: Python :: Implementation :: PyPy',
    ],
    py_modules=['base36'],
    platforms=['Any'],
)