-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 883 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='djsuperadmin',
version='0.0.1',
url='https://github.com/bnznamco/djsuperadmin',
install_requires=[
'django-hvad @ https://github.com/kristianoellegaard/django-hvad/tarball/releases/2.0.x',
'djangorestframework>=3.9.2',
'django>=1.11.6'
],
long_description=long_description,
description="Insuperable content editing",
license="MIT",
author="Gabriele Baldi",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3'
]
)