-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (48 loc) · 1.4 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
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
from distutils.core import setup
setup(name='citation',
version='0.0.1',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django :: 2.1.x', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPL V3 License'
'Operating System :: OS Independent',
'Programming Language :: Python 3.6'
],
description='Citation management and deduplication for Django',
url='https://github.com/comses/citation',
author='CoMSES',
author_email='[email protected]',
install_requires=[
'Django>=2.0,<3.0',
'djangorestframework>=3.7,<4.0',
'python-dateutil',
'bleach',
'fuzzywuzzy',
'lxml',
'markdown',
'bibtexparser',
'pyzotero',
'django-extensions',
'django-model-utils',
'pyparsing==2.3.0',
'psycopg2-binary',
'requests',
'Unidecode',
'python-Levenshtein',
'numpy',
'scipy',
'pandas'
],
test_requires=[
'django-autofixture',
'coverage',
'python-coveralls',
],
license='GPL3',
packages=['citation'],
zip_safe=False
)