-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.1 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('version.txt', 'r') as fh:
version = fh.read()[:-1]
setuptools.setup(
name='ruly-dmn',
packages=setuptools.find_packages('.'),
version=version,
url='https://github.com/ZlatSic/ruly-dmn',
author='Zlatan Sičanica',
author_email='[email protected]',
description='DMN implementation with ruly rule engine',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'
],
entry_points={
'console_scripts': [
'ruly-dmn = ruly_dmn.main:main'
]
},
install_requires=[
'ruly',
]
)