-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 800 Bytes
/
setup.py
File metadata and controls
25 lines (21 loc) · 800 Bytes
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
import os
from setuptools import setup, find_packages
with open(os.path.join("requirements", "base.txt")) as f:
requirements = [req.strip() for req in f.readlines()]
with open(os.path.join("requirements", "testing.txt")) as f:
test_requirements = [req.strip() for req in f.readlines()]
setup(
name='django_datajsonar',
version='0.6.5',
description="Paquete de django con herramientas para administrar modelos de catalogos.",
author="Datos Argentina",
author_email='datos@modernizacion.gob.ar',
url='https://github.com/datosgobar/django-datajsonar',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='django_datajsonar',
tests_require=test_requirements
)