-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
43 lines (39 loc) · 1.37 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="dudac",
version="0.31",
author="Eduardo Silva",
author_email="[email protected]",
description=("DudaC is a command line interface for Duda I/O web services "
"framework"),
license="LGPLv2",
keywords="HTTP monkey duda server framework linux websocket nosql",
url="http://duda.io",
download_url="http://duda.io/releases/duda-client/dudac-0.31.tar.gz",
packages=find_packages(),
long_description=read('README'),
include_package_data=True,
classifiers = [
#'Development Status :: 1 - Planning',
#'Development Status :: 2 - Pre-Alpha',
#'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
#'Development Status :: 6 - Mature',
#'Development Status :: 7 - Inactive',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python',
'Environment :: Console',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
zip_safe=False,
entry_points={
'console_scripts': [
'dudac = dudaclient.main:main'
]
},
)