-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
48 lines (41 loc) · 1.52 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
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '0.5.6'
with open('README.rst') as readme:
LONG_DESCRIPTION = ''.join(readme.readlines())
with open('./requirements/base.txt') as _requirements:
requirements = [r.strip() for r in _requirements.readlines()]
with open('./requirements/test.txt') as _tests_requirements:
tests_requirements = [r.strip() for r in _tests_requirements.readlines()]
DESCRIPTION = "architect-api is a server API and UI of Architect, the service modeling, management and visualization platform."
setup(
name='architect-api',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author='Aleš Komárek',
author_email='[email protected]',
license='Apache License, Version 2.0',
url='https://github.com/cznewt/architect-api/',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
tests_require=tests_requirements,
extras_require={
'tests': [
'pytest>=3.6',
'flake8'],
'docs': [
'sphinx',
'sphinx_rtd_theme']
},
classifiers=[
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)