forked from Yupeek/django-rest-models
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
79 lines (69 loc) · 2.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
import rest_models
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = rest_models.__VERSION__
if 'DJANGO_SETTINGS_MODULE' not in os.environ:
os.environ['DJANGO_SETTINGS_MODULE'] = 'testsettings'
if sys.argv[-1] == 'publish':
# os.system('cd docs && make html')
os.system('python setup.py sdist bdist_wheel')
os.system('twine upload -r pypi dist/*')
print("You probably want to also tag the version now:")
print(" git tag -a %s -m 'version %s'" % (version, version))
print(" git push --tags")
sys.exit()
if sys.argv[-1] == 'doc':
os.system('cd docs && make html')
sys.exit()
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme_file:
readme = readme_file.read()
with open(os.path.join(os.path.dirname(__file__), 'test_requirements.txt')) as requirements_file:
tests_require = requirements_file.readlines()
setup(
name='django-rest-models',
version=version,
description="""django Fake ORM model that query an RestAPI instead of a database — """,
long_description=readme,
long_description_content_type='text/x-rst',
author='Darius BERNARD',
author_email='[email protected]',
url='https://github.com/Yupeek/django-rest-models',
tests_require=tests_require,
install_requires=[
'requests',
'six',
'Django>=2.0',
'unidecode',
],
packages=[
'rest_models',
'rest_models.backend',
],
include_package_data=True,
license="BSD",
zip_safe=False,
keywords='django rest models API ORM',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Environment :: Web Environment',
'Framework :: Django',
],
)