-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 947 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
28
import setuptools
import model_ident
with open("README.rst", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='django-model-ident',
version=model_ident.__version__,
description="Django app to provide classes quick pk only lookups",
long_description=long_description,
long_description_content_type="text/markdown",
author='Chaim Kirby',
author_email='[email protected]',
url='https://github.com/ckirby/django-model-ident',
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)