-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 990 Bytes
/
setup.py
File metadata and controls
42 lines (35 loc) · 990 Bytes
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
from setuptools import setup, find_packages
import os
version = '3.9.2'
DESCRIPTION = open(
os.path.join(os.path.dirname(__file__), 'README.txt')
).read() + """
A `development version`_ is available.
.. _development version:
http://github.com/11craft/xdserver/zipball/master#egg=xdserver-dev
"""
setup(
name='xdserver',
version=version,
description="Extended Durus Server",
long_description=DESCRIPTION,
classifiers=[],
keywords='',
author='ElevenCraft Inc.',
author_email='matt@11craft.com',
url='http://11craft.github.com/xdserver/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires = [
'argparse >= 1.0.1',
'cogen >= 0.2.1, < 0.3',
'Durus >= 3.9, < 4.0',
],
entry_points="""
[console_scripts]
xdserver = xdserver.server:main
xdclient = xdserver.client:main
""",
)