forked from saxix/django-concurrency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·84 lines (71 loc) · 2.75 KB
/
setup.py
File metadata and controls
executable file
·84 lines (71 loc) · 2.75 KB
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
80
81
82
83
84
#!/usr/bin/env python
import imp
import os
import sys
from setuptools import find_packages, setup
from setuptools.command.test import test as TestCommand
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
init = os.path.join(ROOT, 'src', 'concurrency', '__init__.py')
app = imp.load_source('concurrency', init)
reqs = 'install.py%d.pip' % sys.version_info[0]
rel = lambda fname: os.path.join(os.path.dirname(__file__),
'src',
'requirements', fname)
def fread(fname):
return open(rel(fname)).read()
install_requires = fread('install.pip')
test_requires = fread('testing.pip')
dev_requires = fread('develop.pip')
base_url = 'https://github.com/saxix/django-concurrency/'
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = ['tests']
self.test_suite = True
def run_tests(self):
# import here, cause outside the eggs aren't loaded
import pytest
import sys
sys.path.insert(0, os.path.join(ROOT, 'tests', 'demoapp'))
errno = pytest.main(self.test_args)
sys.exit(errno)
setup(
name=app.NAME,
version=app.get_version(),
url='https://github.com/saxix/django-concurrency',
author='Stefano Apostolico',
author_email='s.apostolico@gmail.com',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
description='Optimistic lock implementation for Django. Prevents users from doing concurrent editing.',
long_description=open('README.rst').read(),
license='MIT License',
keywords='django',
setup_requires=['pytest-runner', ],
install_requires=install_requires,
tests_require='django\n' + test_requires,
extras_require={'test': test_requires,
'dev': test_requires + dev_requires},
# cmdclass={'test': PyTest},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
)