-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.07 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
34
from setuptools import setup
setup(
name='configurador',
version='0.1.0',
author='Yonatan Romero',
author_email='[email protected]',
keywords='netcop configurador',
packages=['netcop', 'netcop.configurador',
'netcop.configurador.templates'],
namespace_packages=['netcop'],
package_data={
# Incluir templates de Jinja2
'': ['*.jinja'],
},
url='https://github.com/grupo106/configurador',
description='Realiza la configuracion de parametros del sistema operativo',
long_description=open('README.md').read(),
install_requires=[
'configparser>=3.5.0',
'Jinja2>=2.8',
],
scripts=["scripts/configurador"],
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',
]
)