-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (43 loc) · 1.12 KB
/
setup.py
File metadata and controls
53 lines (43 loc) · 1.12 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
import sys
class Tox(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
#import here, cause outside the eggs aren't loaded
import tox
errno = tox.cmdline(self.test_args)
sys.exit(errno)
tests_require = [
'virtualenv',
'tox',
]
dependency_links = [
]
install_requires = [
]
setup(
name='beeint',
version='0.1',
author='Dennis Schwertel',
author_email='s@digitalkultur.net',
description='',
long_description=__doc__,
package_dir={'': 'beeint'},
packages=find_packages('src'),
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
cmdclass={'test': Tox},
dependency_links = dependency_links,
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)