-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·57 lines (49 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/python
"""
XPpkg, the X-Plane package installer
"""
__author__ = 'Jochem Berends'
__author_email__ = '[email protected]'
from xppkg import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import sys
classifiers = """\
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
Programming Language :: Python
Topic :: Games/Entertainment :: Simulation
"""
tests_require = ['nose',]
setup(
name='XPpkg',
author=__author__,
author_email='%s <%s>' % (__author__, __author_email__),
url='https://github.com/jberends/xppkg',
version=__version__,
description='X-Plane hassle free package installer',
keywords='X-Plane package installer hassle-free',
classifiers=classifiers.splitlines(),
packages=['xppkg',],
# These are the console scripts which are generated 'xppkg' and 'xppkg-<pyversion>'
# They will be in your /Scripts directory (win) or bin dir (macosx, linux)
entry_points={
'console_scripts':[
'xppkg=xppkg:main',
'xppkg-%s=xppkg:main' % sys.version[:3]
],
},
license='Attribution-NonCommercial-ShareAlike 3.0 (CC BY-NC-SA 3.0)',
long_description=open('README.rst').read(),
test_suite='nose.collector',
install_requires=[
'requests',
],
tests_require=tests_require,
extras_require = {
'testing':tests_require,
},
)