forked from ratem/eispatterns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (22 loc) · 803 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.5.4'
readme = open('README.rst').read()
setup(name='eispatterns',
version=version,
description='Enterprise Information Systems Patterns',
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='ratembr@gmail.com',
url='https://github.com/ratem/eispatterns',
license='MIT License',
packages=find_packages()
)