This repository was archived by the owner on Jul 21, 2021. It is now read-only.
File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change
1
+ sphinx-rtd-theme==0.4.3
2
+ sphinx==1.8.5
Original file line number Diff line number Diff line change @@ -2,5 +2,3 @@ grpcio-tools==1.21.1
2
2
grpcio == 1.21.1
3
3
protobuf == 3.7.0
4
4
requests == 2.21.0
5
- sphinx-rtd-theme == 0.4.3
6
- sphinx == 1.8.5
Original file line number Diff line number Diff line change 3
3
4
4
"Python DSL to leverage translation of dictionaries and SQLAlchemy into Protobuf objects"
5
5
6
-
7
6
import ast
8
7
import os
9
- from setuptools import setup , find_packages
10
8
9
+ from setuptools import find_packages , setup
11
10
12
11
local_file = lambda * f : open (os .path .join (os .path .dirname (__file__ ), * f )).read ()
13
12
@@ -40,6 +39,10 @@ def read_test_requirements():
40
39
return local_file ('test_requirements.txt' ).splitlines ()
41
40
42
41
42
+ def read_dev_requirements ():
43
+ return local_file ('dev_requirements.txt' ).splitlines ()
44
+
45
+
43
46
def read_readme ():
44
47
"""Read README content.
45
48
If the README.rst file does not exist yet
@@ -58,6 +61,9 @@ def read_readme():
58
61
description = read_version (),
59
62
include_package_data = True ,
60
63
install_requires = read_requirements (),
64
+ extras_require = {
65
+ 'dev' : read_dev_requirements ()
66
+ },
61
67
long_description = read_readme (),
62
68
long_description_content_type = 'text/x-rst' ,
63
69
name = 'mercator' ,
You can’t perform that action at this time.
0 commit comments