-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.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
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
author='Alex Hill',
author_email='[email protected]',
name='django-relativity',
version='0.2.6',
description='A flexible relationship field for the Django ORM.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/alexhill/django-relativity',
packages=setuptools.find_packages(exclude=['tests']),
install_requires=['django>=1.11'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)