-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·46 lines (43 loc) · 1.47 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
#!/usr/bin/env python
#
from setuptools import setup, find_packages
setupdict = dict(
name='dapscompare',
version='0.6.1',
description='dapscompare is a tool for comparing documentation output',
url='https://github.com/openSUSE/dapscompare',
# Author details
author='Sven Seeberg-Elverfeldt',
author_email='sseebergelverfeldt AT suse.com',
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
#
'Development Status :: 4 - Beta',
'Topic :: Documentation',
'Topic :: Software Development :: Documentation',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
# The license:
'License :: OSI Approved :: MIT License',
# Supported Python versions:
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='daps testing',
include_package_data=True,
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=['PyQt4','scipy', 'numpy', 'Pillow'],
# have to be included in MANIFEST.in as well.
package_data={
'': ['src/dapscompare/README'],
},
# TODO: Check, if entry_points is a better alternative
scripts=['bin/dapscmp'],
)
setup(**setupdict)