-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1.18 KB
/
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
34
35
36
37
38
39
import os
from codecs import open
from setuptools import setup, find_packages
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
VERSION = __import__('adminjournal').__version__
with open(os.path.join(BASE_DIR, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-adminjournal',
version=VERSION,
description='The library adds extended capabilities to log access to Django ModelAdmins.',
long_description=long_description,
url='https://github.com/moccu/django-adminjournal',
project_urls={
'Bug Reports': 'https://github.com/moccu/django-adminjournal/issues',
'Source': 'https://github.com/moccu/django-adminjournal',
},
author='Moccu GmbH & Co. KG',
author_email='[email protected]',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[],
include_package_data=True,
keywords='django',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)