-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·39 lines (38 loc) · 1.08 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
#! /usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-nomination',
version='5.0.0',
packages=find_packages(exclude=['tests*']),
description='',
long_description='See the home page for more information.',
include_package_data=True,
install_requires=[
'markdown>=3.0.1',
'django-widget-tweaks>=1.4.1',
],
zip_safe=False,
url='https://github.com/unt-libraries/django-nomination',
author='University of North Texas Libraries',
author_email='[email protected]',
license='BSD',
keywords=[
'django',
'app',
'UNT',
'url',
'surt',
'nomination',
'web archiving'
],
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',
]
)