Skip to content

Commit ca445c8

Browse files
committed
feat: repo renaming
1 parent 62e38f4 commit ca445c8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
/dist
44
/build
5-
/src/admin_scripts.egg-info
5+
/src/admin-scripts.egg-info

.project

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>admin_scripts</name>
3+
<name>admin-scripts</name>
44
<comment></comment>
55
<projects>
66
<project>legacy</project>

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Admin Scripts is currently licensed under the [Apache License, Version 2.0](http
88

99
## Build Automation
1010

11-
[![Build Status](https://app.travis-ci.com/hivesolutions/admin_scripts.svg?branch=master)](https://travis-ci.com/github/hivesolutions/admin_scripts)
12-
[![Coverage Status](https://coveralls.io/repos/hivesolutions/admin_scripts/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/admin_scripts?branch=master)
13-
[![PyPi Status](https://img.shields.io/pypi/v/admin_scripts.svg)](https://pypi.python.org/pypi/admin_scripts)
11+
[![Build Status](https://app.travis-ci.com/hivesolutions/admin-scripts.svg?branch=master)](https://travis-ci.com/github/hivesolutions/admin-scripts)
12+
[![Coverage Status](https://coveralls.io/repos/hivesolutions/admin-scripts/badge.svg?branch=master)](https://coveralls.io/r/hivesolutions/admin-scripts?branch=master)
13+
[![PyPi Status](https://img.shields.io/pypi/v/admin-scripts.svg)](https://pypi.python.org/pypi/admin-scripts)
1414
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://www.apache.org/licenses/)

setup.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
import setuptools
4242

4343
setuptools.setup(
44-
name = "admin_scripts",
44+
name = "admin-scripts",
4545
version = "0.6.1",
4646
author = "Hive Solutions Lda.",
4747
author_email = "[email protected]",
@@ -93,5 +93,7 @@
9393
"Programming Language :: Python :: 3.5",
9494
"Programming Language :: Python :: 3.6",
9595
"Programming Language :: Python :: 3.7"
96-
]
96+
],
97+
long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(),
98+
long_description_content_type = "text/markdown"
9799
)

0 commit comments

Comments
 (0)