Skip to content

Commit 97940bb

Browse files
committed
Merge pull request #3 from dato-code/change_package_name
change package name
2 parents d1eb9f1 + 5c66c8c commit 97940bb

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ To install Dato Predictive Service Python Client, simply:
1111

1212
.. code-block:: bash
1313
14-
sudo pip install PredictiveServiceClient
14+
sudo pip install dato-predictive-service-client
1515
1616
or from source:
1717

setup.cfg

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@ tag_build =
33
tag_date = 0
44
tag_svn_revision = 0
55

6-
[metadata]
7-
description-file = README.md

setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,24 @@
2222
import subprocess
2323
from setuptools import setup, find_packages
2424

25-
PACKAGE_NAME="Dato-Predictive-Service-Client"
26-
VERSION="1.0.2"
25+
PACKAGE_NAME="dato-predictive-service-client"
26+
VERSION="1.0.0"
27+
28+
f = open(os.path.join(os.path.dirname(__file__), 'README.rst'))
29+
long_description = f.read()
30+
f.close()
2731

2832
if __name__ == '__main__':
2933
setup(
30-
name="Dato-Predictive-Service-Client",
34+
name=PACKAGE_NAME,
3135
version=VERSION,
3236
author='Dato, Inc.',
3337
author_email='support@dato.com',
3438
packages=find_packages(),
3539
url='https://github.com/dato-code/Dato-Predictive-Service-Client-Python',
3640
license='LICENSE',
3741
description='Dato Predictive Service Client makes it easy to make REST API calls to Dato Predictive Services',
38-
long_description='Documentation at https://github.com/dato-code/Dato-Predictive-Service-Client-Python',
42+
long_description=long_description,
3943
classifiers=[
4044
"Development Status :: 4 - Beta",
4145
"Environment :: Console",

0 commit comments

Comments
 (0)