Browse Source

修改包信息

liuyuqi-dellpc 2 years ago
parent
commit
b34f44ec37
1 changed files with 6 additions and 6 deletions
  1. 6 6
      setup.py

+ 6 - 6
setup.py

@@ -1,10 +1,10 @@
-"""Setup script for 君乐宝"""
+"""Setup script for twitter_creator package."""
 
 import setuptools
 
 
 # Get version information without importing the package
-SHORT_DESCRIPTION = '君乐宝助手'
+SHORT_DESCRIPTION = 'A tool to create twitter account'
 LONG_DESCRIPTION = open('README.md', 'rt').read()
 
 CLASSIFIERS = [
@@ -21,13 +21,13 @@ CLASSIFIERS = [
 ]
 
 setuptools.setup(
-    name='reflutter',
+    name='twitter_creator',
     version='0.6.5',
     description=SHORT_DESCRIPTION,
     long_description=LONG_DESCRIPTION,
-    author='impact',
+    author='liuyuqi',
     author_email='liuyuqi.gov@msn.cn',
-    url='https://git.yoqi.me/lyq/TwitterAccountCreator',
+    url='https://git.yoqi.me/autocreator/twitter_creator',
     packages=setuptools.find_packages(),
     license='GPLv3+',
     platforms=['any'],
@@ -35,7 +35,7 @@ setuptools.setup(
     classifiers=CLASSIFIERS,
     entry_points={
         'console_scripts': [
-            'jlb = crawl_jlb.__init__:main',
+            'gen_twitter = twitter_creator.__init__:main',
         ],
     },
 )