-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 790 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 790 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
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='maxconnect',
version='0.5',
description='Coroutine-based networking library',
author='Andrew Klofas',
author_email='andrew@maxkernel.com',
url='http://www.maxkernel.com',
packages=['maxconnect'],
long_description=read('README'),
classifiers=[
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
],
keywords='maxkernel robotics automation',
license='GPL',
entry_points={
'gui_scripts': [
'max-deploy = maxconnect.main:gui_deploy',
]
},
)