-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
62 lines (59 loc) · 1.91 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
51
52
53
54
55
56
57
58
59
60
61
62
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
TEST_REQUIREMENTS = [
'pytest',
'pytest-django',
'pylint',
'pylint_django',
'git-pylint-commit-hook',
]
setup(
name='django-moonsheep',
version='0.3.0',
# packages=['moonsheep'],
packages=find_packages(),
include_package_data=True,
package_data={
'moonsheep': ['templates/*.html', 'templates/**/*.html']
},
description='digitization of public documents',
long_description=README,
author='Krzysztof Madejski, Alan Zard, Tin Geber, Partin Imeri, Ozren Muic, Piotr Peczek',
author_email='[email protected]',
url='https://github.com/TransparenCEE/moonsheep/',
download_url='',
test_suite='runtests.runtests',
license='AGPL-3.0',
install_requires=[
'Django>=2.2',
'dpath~=1.4',
'djangorestframework~=3.10',
'djangorestframework-jsonapi~=2.8',
'django-filter~=2.2',
'PyUtilib~=5.7',
'requests~=2.22',
'Faker~=2.0',
'pandas~=0.25.3',
'openpyxl~=3.0',
'psycopg2~=2.8.4'
],
tests_require=TEST_REQUIREMENTS,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11.7', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
zip_safe=False,
)