-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·26 lines (25 loc) · 996 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
from setuptools import setup, find_packages
setup(
name='django-citeit',
version='5.0.0',
packages=find_packages(exclude=['tests*']),
description='A Django app for the creation of an annotated bibliography.',
long_description=('Visit https://github.com/unt-libraries/django-citeit '
'for the latest documentation.'),
include_package_data=True,
url='https://github.com/unt-libraries/django-citeit',
author='University of North Texas Libraries',
author_email='mark.phillips@unt.edu',
license='BSD',
keywords=['django', 'annotated', 'bibliography'],
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Django :: 4.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]
)