44 lines
1.3 KiB
Python
Executable File
44 lines
1.3 KiB
Python
Executable File
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
##
|
|
## @author Edouard DUPIN
|
|
##
|
|
## @copyright 2012, Edouard DUPIN, all right reserved
|
|
##
|
|
## @license APACHE v2.0 (see license file)
|
|
##
|
|
|
|
from setuptools import setup
|
|
|
|
def readme():
|
|
with open('README.rst') as f:
|
|
return f.read()
|
|
|
|
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
|
|
setup(name='prude',
|
|
version='0.2.0',
|
|
description='Prude is a simple parser that check word error (CamelCase variable, snake_case variable and Documentation)',
|
|
long_description=readme(),
|
|
url='http://github.com/HeeroYui/prude',
|
|
author='Edouard DUPIN',
|
|
author_email='yui.heero@gmail.com',
|
|
license='APACHE-2',
|
|
packages=['prude'],
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python',
|
|
'Topic :: Software Development :: Build Tools',
|
|
'Topic :: Software Development :: Documentation',
|
|
'Topic :: Software Development :: Testing'
|
|
],
|
|
keywords='language checker in code',
|
|
scripts=['bin/prude'],
|
|
include_package_data = True,
|
|
zip_safe=False)
|
|
|
|
#To developp: sudo ./setup.py install
|
|
# sudo ./setup.py develop
|
|
#TO register all in pip: ./setup.py register sdist upload
|
|
|