-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·50 lines (46 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·50 lines (46 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
import py2exe
except ImportError:
kwargs = {}
else:
kwargs = {
'console': ['igcweight/main.py'],
'options': {
'py2exe': {
'packages': ['sqlalchemy', 'mako', 'wx'],
'skip_archive': True,
},
},
}
setup(
name='igcweight',
version='0.9.7',
description='IGC procedures for handicapped classes',
author='Jan Seifert',
author_email='jan.seifert@fotkyzcest.net',
url='https://github.com/seifert/igcweight',
license='BSD',
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'mako',
'sqlalchemy',
'wx',
],
entry_points={
'console_scripts': [
'igcweight = igcweight.main:main',
]
},
**kwargs
)