-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
31 lines (27 loc) · 857 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
# coding: utf-8
import re
from os.path import dirname, join, abspath
from setuptools import setup
VERSION = re.search(
r"__version__\s=\s'(\d\.\d\.\d)'",
open(abspath(join(dirname(__file__), 'marcel.py'))).read()
).group(1)
setup(
name="marcel",
version=VERSION,
license='3-clause BSD',
description='Le docker français',
author="Balthazar Rouberol",
author_email="[email protected]",
url='http://github.com/brouberol/marcel',
py_modules=['marcel'],
entry_points={'console_scripts': ['marcel=marcel:main']},
classifiers=[
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Operating System :: Unix',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
]
)