forked from gtaylor/EVE-Market-Data-Relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (51 loc) · 1.31 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
def find_packages(exclude=None):
"""
Just stub this. If you're packaging EMDS, you need setuptools. If
you're installing, not so much.
"""
return
import emdr
required = [
'bottle',
'ujson',
'gevent',
'requests',
'python-dateutil<2.0',
'pyzmq',
'pytz',
'cython',
'emds',
]
scripts = [
'bin/emdr-announcer',
'bin/emdr-gateway',
'bin/emdr-relay',
'bin/emdr-snooper',
]
setup(
name='emdr',
version=emdr.__version__,
description='EVE Market Data Relay',
long_description=open('README.rst').read(),
author='Greg Taylor',
author_email='[email protected]',
url='https://github.com/gtaylor/EVE-Market-Data-Relay',
packages=find_packages(exclude=['tests', 'emds']),
scripts=scripts,
package_data={'': ['LICENSE']},
include_package_data=True,
install_requires=required,
license='BSD',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
),
)