-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 723 Bytes
/
setup.py
File metadata and controls
33 lines (29 loc) · 723 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
# -*- coding: utf-8 -*-
from setuptools import setup
import os
src_dir = os.environ.get('FDSNS_SRC_DIR', '.')
version = os.environ.get('FDSNS_VERSION', '0.0.0')
setup(
name='fdsns',
version=version,
description='Fast deploying, simple nav site',
author='zerbobo',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2.7',
'Private :: Do Not Upload',
],
install_requires=[
'Flask==1.0',
'Flask-Cors==3.0.3',
'Toml==0.9.4'
],
package_dir={'fdsns': src_dir + "/fdsns"},
packages=[
'fdsns',
'fdsns.server'
],
package_data={
'fdsns.server': ['templates/*.html'],
},
)