-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 820 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
from setuptools import setup, find_packages
from setuptools_scm import get_version
setup(
name='django-daisy',
version=get_version(),
packages=find_packages(),
use_scm_version=True,
setup_requires=['setuptools-scm'],
include_package_data=True,
install_requires=[], # Add dependencies here
description='A modern django dashboard built with daisyui',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/hypy13/django-daisy',
author='Hossein Yaghoubi',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
)