-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 1021 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (28 loc) · 1021 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from compose4py import __version__
with open("README.md", "r") as fh:
long_description = "".join(fh.readlines())
setup(
name='compose4py',
version=__version__,
description='Onion Model in Python',
long_description=long_description,
long_description_content_type="text/markdown",
author='Hai Liang Wang',
author_email='hain@chatopera.com',
url='https://github.com/chatopera/compose4py',
license="Apache Software License",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Natural Language :: Chinese (Traditional)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities'],
keywords='onion,compose,chain',
packages=find_packages(),
install_requires=[
])