-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.19 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
# -*- coding: utf-8 -*-
#
from setuptools import setup, find_packages
setup(
name="verschneidungstool",
version="1.6.0",
url='https://github.com/MaxBo/verschneidungstool',
author='Christoph Franke',
description="graphical user interface for computing intersections on travel analysis zones",
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Traffic Planners",
"License :: Other/Proprietary License",
"Natural Language :: German",
"Operating System :: Windows",
"Programming Language :: Python",
],
keywords='VERSCHNEIDUNGSTOOL',
download_url='',
license='other',
packages=find_packages('src'),
namespace_packages=['verschneidungstool'],
package_dir={'': 'src'},
package_data={'': ['dlls/*', 'docs/*'], },
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'psycopg2',
'lxml',
'openpyxl'
],
# PyQT 4 needed, no disutils available for the package.
# install it seperately
entry_points={
'console_scripts': [
'verschneidungstool=verschneidungstool.main:startmain',
],
},
)