-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 1.21 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from imp import load_source
import sys
test_requirements = []
if sys.version_info[0] < 3:
test_requirements += ['mock']
setup(
name='alchemist-armet',
version=load_source('', 'alchemist_armet/_version.py').__version__,
description='Tight integration of armet with alchemist.',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Flask',
# 'Framework :: SQLAlchemy',
# 'Framework :: Alchemist',
# 'Framework :: Armet',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
author='Concordus Applications',
author_email='[email protected]',
url='http://github.com/concordusapps/alchemist-armet',
packages=find_packages('.'),
install_requires=[
'alchemist >= 0.3.0',
'armet >= 0.4.0'
],
)