-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (29 loc) · 1011 Bytes
/
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
import os
import re
import subprocess
import sys
from setuptools import setup, find_packages, Extension
version='0.1.3'
setup(
name='myriad',
version=version,
description='Simple distributed computing.',
author='Chris Wright',
author_email='[email protected]',
url='https://github.com/cjw85/myriad',
download_url='https://github.com/cjw85/myriad/tarball/{}'.format(version),
long_description="""Simple client/server based distributed computing using only python standard library.""",
packages=find_packages(),
entry_points={
'console_scripts':['myriad = myriad.components:main']
},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Distributed Computing'
]
)