-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
37 lines (36 loc) · 939 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
from setuptools import setup
setup(
name='btsapi',
packages=['btsapi'],
version="1.0.11",
url="https://github.com/bodastage/bts-ce-api",
author="Emmanuel Robert Ssebaggala",
author_email="[email protected]",
description="REST API for Boda Telecom Suite Community Edition (BTS-CE). ",
include_package_data=True,
install_requires=[
'flask',
'sqlalchemy',
'marshmallow',
'flask-sqlalchemy',
'flask-jsontools',
'flask-marshmallow',
'marshmallow-sqlalchemy',
'flask-bcrypt',
'flask-testing',
'flask-cors',
'sqlalchemy-datatables',
'flask-login',
'blinker'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)