-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (28 loc) · 772 Bytes
/
setup.py
File metadata and controls
36 lines (28 loc) · 772 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
34
35
import re
from os.path import join, dirname
from setuptools import setup, find_packages
with open(join(dirname(__file__), 'panda', '__init__.py')) as v_file:
package_version = re.compile('.*__version__ = \'(.*?)\'', re.S)\
.match(v_file.read()).group(1)
dependencies = [
'restfulpy >= 3.4.0',
'kavenegar',
'requests',
'oathcy',
'sqlalchemy_media >= 0.17.1',
]
setup(
name='panda',
version=package_version,
author='mohammad sheikhian',
author_email='mohammadsheikhian70@gmail.com',
install_requires=dependencies,
packages=find_packages(),
test_suite='panda.tests',
include_package_data=True,
entry_points={
'console_scripts': [
'panda = panda:panda.cli_main'
]
}
)