-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.01 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
"""
Voxin is a specialized tool for disproportionate logic arrays.
"""
from setuptools import setup, find_packages
__author__ = "Lars van de Kerkhof <[email protected]>"
__version__ = "0.0.1"
setup(
# package name in pypi
name='voxin',
# extract version from module.
version=__version__,
description="A tornado example.",
long_description="Ik heet voxin",
classifiers=[],
keywords='',
author='Lars van de Kerkhof',
author_email='[email protected]',
url='https://github.dtc.avira.com/VDT/mockengine',
license='',
# include all packages in the egg, except the test package.
packages=find_packages(exclude=['ez_setup', 'examples']),
# include non python files
include_package_data=True,
zip_safe=False,
# specify dependencies
install_requires=[
'distribute',
'argparse',
'tornado',
],
# generate scripts
entry_points={
'console_scripts': [
'voxin = voxin.server:main'
]
},
)