-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
35 lines (31 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
35
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [ 'chibi>=0.11.7' ]
setup(
author="dem4ply",
author_email='dem4ply@gmail.com',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="libreria para leer y escribir los archivos de configuracion de apache",
install_requires=requirements,
license="WTFPL",
long_description=readme + '\n\n' + history,
include_package_data=True,
keywords='chibi_apache',
name='chibi_apache',
packages=find_packages(include=['chibi_apache', 'chibi_apache.*']),
url='https://github.com/dem4ply/chibi_apache',
version='0.0.2',
zip_safe=False,
)