-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (28 loc) · 858 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
29
30
31
32
33
34
35
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
from setuptools.command.test import test as TestCommand
from exlobe.version import VERSION
class test(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
from pytest import main
main(self.test_args)
setup(
name='exlobe',
version=VERSION,
packages=['exlobe'],
description='An web-based essay outlining tool',
author='Jae-Myoung Yu',
author_email='euphoris' '@' 'gmail.com',
url='https://bitbucket.org/euphoris/lifemetr',
install_requires=['flask', 'sqlalchemy'],
tests_require=['pytest'],
cmdclass={'test': test}
)