-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 929 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 929 Bytes
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
kwargs = {
'packages': ['ledger_common'],
'include_package_data': True,
'install_requires': [
'django>=1.8,<=1.11.29',
],
'test_suite': 'test_suite',
'name': 'ledger-common',
#'version': __import__('preserialize').get_version(),
'author': 'Brendan Blackford',
'author_email': 'brendan.blackford@dbca.wa.gov.au',
'description': 'Shared library for Ledger applications',
'license': 'BSD',
#'keywords': 'serialize model queryset django',
#'url': 'https://github.com/bruth/django-preserialize/',
'classifiers': [
#'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
}
setup(**kwargs)