-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (27 loc) · 919 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
import os
import codecs
from setuptools import setup, find_packages
def read(filename):
"""Read and return `filename` in root dir of project and return string"""
here = os.path.abspath(os.path.dirname(__file__))
return codecs.open(os.path.join(here, filename), 'r').read()
long_description = read('README.md')
setup(
name="enrique",
version="0.1.0",
url='https://github.com/mesos-magellan/enrique',
license='MIT License',
author='Anthony Bilinski',
description=('Magellan executor'),
long_description=long_description,
packages=find_packages(),
# FIXME installing this way breaks the pyrallelsa package
# use reqs in the meantime
# install_requires = ['pyrallelsa'],
# dependency_links=[
# 'git+git://github.com/mesos-magellan/pyrallelsa#egg=pyrallelsa'
# ],
entry_points={'console_scripts': [
'enrique = enrique:main'
]}
)