-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.05 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.05 KB
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
34
from setuptools import setup
setup(
name='despachante',
version='0.2.0',
author='Yonatan Romero',
author_email='yromero@openmailbox.org',
keywords='netcop despachante',
packages=['netcop', 'netcop.despachante', 'netcop.despachante.templates'],
url='https://github.com/grupo106/despachante',
namespace_packages=['netcop'],
description='Despachante de politicas de usuario',
long_description=open('README.md').read(),
package_data={
# Incluir templates de Jinja2
'': ['*.jinja'],
},
install_requires=[
'peewee>=2.8.1',
'psycopg2>=2.6.2',
'Jinja2>=2.8',
],
scripts=["scripts/despachar"],
test_suite="tests",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: Freely Distributable',
]
)