forked from unt-libraries/django-controlled-vocabularies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 919 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
from setuptools import setup, find_packages
setup(
name='django-controlled-vocabularies',
version='3.0.0',
packages=find_packages(exclude=['tests*']),
description='',
long_description='See the home page for more information.',
include_package_data=True,
install_requires=[
'lxml==4.6.3',
],
url='https://github.com/unt-libraries/django-controlled-vocabularies',
author='University of North Texas Libraries',
author_email='[email protected]',
license='BSD',
keywords=['django', 'controlled', 'vocabularies', 'vocabulary'],
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Django :: 2.2',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)