-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (34 loc) · 1.24 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
from setuptools import setup, find_packages
with open('HISTORY.rst') as history_file:
history = history_file.read()
exec(open('microfreshener/__init__.py').read())
def readme():
with open('README.rst') as f:
return f.read()
setup(name='microfreshener-core',
version=__version__,
description='Read a MicroTOSCA model of a microservice-based architecture and discover architectural smells',
long_description=readme(),# + history,
long_description_content_type = "text/x-rst",
url='',
include_package_data=True,
packages=find_packages(exclude=['tests']),
author=__author__,
author_email=__email__,
license='MIT',
keywords='microservice TOSCA smells refactorings',
install_requires=[
'ruamel.yaml','tosca-parser'
],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'microfreshener=microfreshener.command_line:cli',
],
},
)