Skip to content

Commit 6161055

Browse files
authored
renaming the package to launchdarkly-server-sdk (#108)
1 parent 6d105a9 commit 6161055

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

Diff for: CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ We encourage pull requests and other contributions from the community. Before su
1717
It's advisable to use [`virtualenv`](https://virtualenv.pypa.io/) to create a development environment within the project directory:
1818

1919
```
20-
mkvirtualenv python-client
21-
source ./python-client/bin/activate
20+
mkvirtualenv python-server-sdk
21+
source ~/.virtualenvs/python-server-sdk/bin/activate
2222
```
2323

2424
To install the runtime and test requirements:

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![Circle CI](https://img.shields.io/circleci/project/launchdarkly/python-server-sdk.png)](https://circleci.com/gh/launchdarkly/python-server-sdk)
44

5-
[![PyPI](https://img.shields.io/pypi/v/ldclient-py.svg?maxAge=2592000)](https://pypi.python.org/pypi/ldclient-py)
6-
[![PyPI](https://img.shields.io/pypi/pyversions/ldclient-py.svg)](https://pypi.python.org/pypi/ldclient-py)
5+
[![PyPI](https://img.shields.io/pypi/v/launchdarkly-server-sdk.svg?maxAge=2592000)](https://pypi.python.org/pypi/launchdarkly-server-sdk)
6+
[![PyPI](https://img.shields.io/pypi/pyversions/launchdarkly-server-sdk.svg)](https://pypi.python.org/pypi/launchdarkly-server-sdk)
77

88
## LaunchDarkly overview
99

Diff for: docs/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
SPHINXOPTS =
77
SPHINXBUILD = sphinx-build
8-
SPHINXPROJ = ldclient-py
8+
SPHINXPROJ = launchdarkly-server-sdk
99
SOURCEDIR = .
1010
BUILDDIR = build
1111

Diff for: docs/conf.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
# -- Project information -----------------------------------------------------
2727

28-
project = u'ldclient-py'
28+
project = u'launchdarkly-server-sdk'
2929
copyright = u'2019, LaunchDarkly'
3030
author = u'LaunchDarkly'
3131

@@ -110,7 +110,7 @@
110110
# -- Options for HTMLHelp output ---------------------------------------------
111111

112112
# Output file base name for HTML help builder.
113-
htmlhelp_basename = 'ldclient-pydoc'
113+
htmlhelp_basename = 'launchdarkly-server-sdk-doc'
114114

115115

116116
# -- Options for LaTeX output ------------------------------------------------
@@ -137,7 +137,7 @@
137137
# (source start file, target name, title,
138138
# author, documentclass [howto, manual, or own class]).
139139
latex_documents = [
140-
(master_doc, 'ldclient-py.tex', u'ldclient-py Documentation',
140+
(master_doc, 'launchdarkly-server-sdk.tex', u'launchdarkly-server-sdk Documentation',
141141
u'LaunchDarkly', 'manual'),
142142
]
143143

@@ -147,7 +147,7 @@
147147
# One entry per manual page. List of tuples
148148
# (source start file, name, description, authors, manual section).
149149
man_pages = [
150-
(master_doc, 'ldclient-py', u'ldclient-py Documentation',
150+
(master_doc, 'launchdarkly-server-sdk', u'launchdarkly-server-sdk Documentation',
151151
[author], 1)
152152
]
153153

@@ -158,8 +158,8 @@
158158
# (source start file, target name, title, author,
159159
# dir menu entry, description, category)
160160
texinfo_documents = [
161-
(master_doc, 'ldclient-py', u'ldclient-py Documentation',
162-
author, 'ldclient-py', 'One line description of project.',
161+
(master_doc, 'launchdarkly-server-sdk', u'launchdarkly-server-sdk Documentation',
162+
author, 'launchdarkly-server-sdk', 'One line description of project.',
163163
'Miscellaneous'),
164164
]
165165

Diff for: docs/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. ldclient-py documentation master file, created by
1+
.. launchdarkly-server-sdk documentation master file, created by
22
sphinx-quickstart on Mon Feb 4 13:16:49 2019.
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
@@ -8,7 +8,7 @@ LaunchDarkly Python SDK
88

99
This is the API reference for the `LaunchDarkly <https://launchdarkly.com/>`_ SDK for Python.
1010

11-
The latest version of the SDK can be found on `PyPI <https://pypi.org/project/ldclient-py/>`_, and the source code is on `GitHub <https://github.com/launchdarkly/python-server-sdk>`_.
11+
The latest version of the SDK can be found on `PyPI <https://pypi.org/project/launchdarkly-server-sdk/>`_, and the source code is on `GitHub <https://github.com/launchdarkly/python-server-sdk>`_.
1212

1313
For more information, see LaunchDarkly's `Quickstart <https://docs.launchdarkly.com/docs>`_ and `SDK Reference Guide <http://docs.launchdarkly.com/docs/python-sdk-reference>`_.
1414

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def run(self):
4444
raise SystemExit(errno)
4545

4646
setup(
47-
name='ldclient-py',
47+
name='launchdarkly-server-sdk',
4848
version=ldclient_version,
4949
author='LaunchDarkly',
5050
author_email='[email protected]',

0 commit comments

Comments
 (0)