File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ RUN apt-get -q update && \
1616
1717# Install python
1818RUN python setup.py -q install
19- RUN pip3 install --upgrade requests
2019
2120# Run the tests
2221RUN ./build.sh
Original file line number Diff line number Diff line change 1515"""Install datacommons."""
1616from setuptools import setup
1717
18+ with open ('README.md' , 'r' ) as fh :
19+ long_description = fh .read ()
20+
1821# Package metadata.
1922NAME = 'datacommons'
20- DESCRIPTION = 'A library to access Data Commons API.'
21- URL = 'https://github.com/google/datacommons '
22- EMAIL = 'datacommons@google.com '
23+ DESCRIPTION = 'A library to access Data Commons Python Client API.'
24+ URL = 'https://github.com/datacommonsorg/api-python '
25+ EMAIL = 'support@datacommons.org '
2326AUTHOR = 'datacommons.org'
2427REQUIRES_PYTHON = '>=3.6.0'
2528VERSION = '1.0.0'
4144 name = NAME ,
4245 version = VERSION ,
4346 description = DESCRIPTION ,
47+ long_description = long_description ,
48+ long_description_content_type = 'text/markdown' ,
4449 author = AUTHOR ,
4550 author_email = EMAIL ,
4651 maintainer = AUTHOR ,
You can’t perform that action at this time.
0 commit comments