-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1 KB
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
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Libraries",
]
setup(
name='Swagxample',
version='0.0.3.1',
packages=['swagxample'],
url='https://bitbucket.org/deginner/swagxample',
license='MIT',
classifiers=classifiers,
author='deginner',
author_email='support@deginner.com',
description='An HTTP server application using Swagger 2.0, bitjws, and SQLAlchemy.',
setup_requires=['pytest-runner'],
include_package_data = True,
install_requires=[
'sqlalchemy>=1.0.9',
'secp256k1==0.11',
"bitjws==0.6.3.1",
"flask>=0.10.0",
"flask-login",
"flask-cors",
"flask-bitjws>=0.1.1.4",
"alchemyjsonschema"
],
tests_require=['pytest', 'pytest-cov'],
extras_require={"build": ["flask-swagger"]},
entry_points = """
[console_scripts]
createuser = create_user:create_user
"""
)