소스 검색

Improve setup file

JoostSijm 5 년 전
부모
커밋
a4f2717f0c
1개의 변경된 파일7개의 추가작업 그리고 5개의 파일을 삭제
  1. 7 5
      setup.py

+ 7 - 5
setup.py

@@ -1,7 +1,9 @@
+"""Setup file"""
+
 import setuptools
 
 with open("README.md", "r") as fh:
-    long_description = fh.read()
+    LONG_DESCRIPTION = fh.read()
 
 setuptools.setup(
     name="rival_regions_wrapper",
@@ -9,13 +11,13 @@ setuptools.setup(
     author="Joost Sijm",
     author_email="joostsijm@gmail.com",
     description="Rival Regions API wrapper",
-    long_description=long_description,
+    long_description=LONG_DESCRIPTION,
     long_description_content_type="text/markdown",
-    url="https://github.com/jjoo914/rival_regions_calc",
+    url="git@github.com:jjoo914/rival_regions_wrapper.git",
     packages=setuptools.find_packages(),
     install_requires=[
-       'webbot',
-       'cfscrape'
+        'webbot',
+        'cfscrape'
     ],
     classifiers=[
         "Programming Language :: Python :: 3",