-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathsetup.py
30 lines (27 loc) · 953 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
from setuptools import setup, find_packages
from codecs import open
import os
from admin_shortcuts import version
setup(
name='django-admin-shortcuts',
author='Ales Kocjancic',
author_email='[email protected]',
version=version,
description='Add simple and pretty shortcuts to the django admin homepage.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/alesdotio/django-admin-shortcuts',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
install_requires=[
'Django>=4.0',
],
download_url='https://github.com/alesdotio/django-admin-shortcuts/tarball/' + version,
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
keywords='',
)