-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 1.08 KB
/
setup.py
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
from setuptools import setup, find_packages
version = '0.1.1'
with file('README.rst') as readme:
long_description = readme.read()
setup(name='coral',
version=version,
description="Modulo que traduz codigo python para portugues",
long_description=long_description,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='coral linguagem dsl tradutor portugues brasil',
author='Gustavo Rezende',
author_email='nsigustavo@gmail.com',
url='http://nsigustavo.blogspot.com',
license='',
package_data = {'coral':['*.yaml']},
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'PyYAML',
'ipython',
],
entry_points = {
'console_scripts': [
'coral = coral.comandos:copilar',
'coralexec = coral.comandos:executar',
'icoral = coral.icoral:icoral',
'traduzir = coral.comandos:traduzir']},
)