mirror of
https://github.com/wassname/pysle.git
synced 2026-06-27 16:10:05 +08:00
20 lines
512 B
Python
20 lines
512 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
'''
|
|
Created on Oct 15, 2014
|
|
|
|
@author: tmahrt
|
|
'''
|
|
import codecs
|
|
from distutils.core import setup
|
|
setup(name='pysle',
|
|
version='1.3.0',
|
|
author='Tim Mahrt',
|
|
author_email='timmahrt@gmail.com',
|
|
package_dir={'pysle':'pysle'},
|
|
packages=['pysle'],
|
|
license='LICENSE',
|
|
long_description=codecs.open('README.rst', 'r', encoding="utf-8").read(),
|
|
# install_requires=[], # No requirements! # requires 'from setuptools import setup'
|
|
)
|