-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
51 lines (42 loc) · 1.27 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
44
45
46
47
48
49
50
51
# coding: utf-8
from setuptools import setup, find_packages
version = '0.1.1'
requirements = [
'setuptools',
'six',
'pyyaml',
]
entry_points = """
[console_scripts]
# rule = rule.cli:main
"""
scripts = [
]
setup(name='rule',
version=version,
description="A rule engine written in python.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
# Get more strings from
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules'
],
url="https://github.com/tclh123/rule",
keywords=['rule'],
author='Harry Lee',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['examples*', 'tests*']),
include_package_data=True,
zip_safe=False,
entry_points=entry_points,
scripts=scripts,
install_requires=requirements,
) # NOQA