-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
32 lines (29 loc) · 918 Bytes
/
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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup
try:
with open('README.rst') as f:
long_description = f.read()
except IOError:
long_description = ''
setup(
name='oxente',
version='127.0.0.1',
url='https://github.com/luanfonceca/oxente',
license='MIT',
description=u'Tradução do módulo "this" do python para PT-BR-NE (Português brasileiro nordestino)',
long_description=long_description,
author='Luan Fonseca',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
packages=['oxente'],
install_requires=['setuptools'],
)