forked from ask/flower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (33 loc) · 1.07 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
40
#!/usr/bin/env python
import os
import re
from setuptools import setup, find_packages
version = re.compile(r'VERSION\s*=\s*\((.*?)\)')
def get_package_version():
"returns package version without importing it"
base = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(base, "celeryadmin/__init__.py")) as initf:
for line in initf:
m = version.match(line.strip())
if not m:
continue
return ".".join(m.groups()[0].split(", "))
setup(
name='celeryadmin',
version=get_package_version(),
description='Celery Web Admin',
long_description=open('README.rst').read(),
author='Mher Movsisyan',
url='https://github.com/mher/celery-admin',
packages=find_packages(),
install_requires=['celery', 'tornado'],
package_data={'celeryadmin': ['templates/*', 'static/**/*']},
entry_points={
'console_scripts': [
'celeryadmin = celeryadmin.__main__:main',
],
'celery.commands': [
'ui = celeryadmin.command:Admin',
],
},
)