-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (36 loc) · 1019 Bytes
/
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
import os
from setuptools import setup
def get_packages():
# setuptools can't do the job :(
packages = []
for root, dirnames, filenames in os.walk('monarch'):
if '__init__.py' in filenames:
packages.append(".".join(os.path.split(root)).strip("."))
return packages
setup(
name='monarch',
version='0.1.11',
description='The un-migration migration tool',
url='http://github.com/jtushman/monarch',
author='Jonathan Tushman',
author_email='jonathan@zefr.com',
packages=get_packages(),
install_requires=[
'Click>2.0',
'jinja2',
'mongoengine',
'boto',
],
tests_require=['nose'],
test_suite='nose.collector',
entry_points='''
[console_scripts]
monarch=monarch:cli
''',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
)