forked from developerpe/django-automatic-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 967 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
33
import os
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='django-automatic-crud',
version='1.2.0',
packages=['automatic_crud'],
include_package_data=True,
license='BSD License',
description='CRUDS Automáticos con Django',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/developerpe/django-automatic-crud',
author='Oliver Sandoval',
author_email='[email protected]',
install_requires=[
'Django>=2.2',
'openpyxl==3.0.7',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3'
]
)