forked from weslleymberg/eispatterns-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (22 loc) · 830 Bytes
/
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
# coding: utf-8
from setuptools import setup, find_packages
version = '0.1.4'
readme = open('README.rst').read()
setup(name='eispatterns-examples',
version=version,
description='Enterprise Information Systems Patterns Examples',
long_description=readme,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
],
keywords='enterprise information systems, business process, design patterns',
author='Me and my posse',
author_email='[email protected]',
url='https://github.com/ratem/eispatterns-examples',
license='MIT License',
packages=find_packages()
)