File: setup.py

package info (click to toggle)
secnet 0.6.8
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,956 kB
  • sloc: ansic: 15,234; python: 1,057; perl: 966; sh: 596; tcl: 484; java: 231; asm: 114; yacc: 89; php: 64; makefile: 48; awk: 40
file content (12 lines) | stat: -rw-r--r-- 260 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup

setup(
    name='base91',
    version='1.0.1',
    packages=['base91'],
    url='https://github.com/SunDwarf/base91-python',
    license='New BSD',
    author='',
    author_email='',
    description='Base91 encoding in Python'
)