This repository was archived by the owner on Jul 21, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 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
22grpcio == 1.21.1
33protobuf == 3.7.0
44requests == 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 33
44"Python DSL to leverage translation of dictionaries and SQLAlchemy into Protobuf objects"
55
6-
76import ast
87import os
9- from setuptools import setup , find_packages
108
9+ from setuptools import find_packages , setup
1110
1211local_file = lambda * f : open (os .path .join (os .path .dirname (__file__ ), * f )).read ()
1312
@@ -40,6 +39,10 @@ def read_test_requirements():
4039 return local_file ('test_requirements.txt' ).splitlines ()
4140
4241
42+ def read_dev_requirements ():
43+ return local_file ('dev_requirements.txt' ).splitlines ()
44+
45+
4346def read_readme ():
4447 """Read README content.
4548 If the README.rst file does not exist yet
@@ -58,6 +61,9 @@ def read_readme():
5861 description = read_version (),
5962 include_package_data = True ,
6063 install_requires = read_requirements (),
64+ extras_require = {
65+ 'dev' : read_dev_requirements ()
66+ },
6167 long_description = read_readme (),
6268 long_description_content_type = 'text/x-rst' ,
6369 name = 'mercator' ,
You can’t perform that action at this time.
0 commit comments