forked from cam-stitt/arnold
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 895 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 895 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
31
32
33
from setuptools import setup, find_packages
install_requires = ['peewee', 'termcolor']
try:
import importlib
except ImportError:
install_requires.append('importlib')
setup(
name='arnold',
version='0.4.1',
description='Simple migrations for python ORMs',
long_description='',
keywords='python, peewee, migrations',
author='Cameron A. Stitt',
author_email='cameron@castitt.com',
url='https://github.com/cam-stitt/arnold',
license='BSD',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
'console_scripts': [
'arnold = arnold:main',
]
}
)