This commit is contained in:
parent
e137ad9f3e
commit
c43f64e5c9
10
setup.py
10
setup.py
@ -2,11 +2,11 @@ from datetime import datetime
|
|||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
with open("README.md") as fh:
|
with open("README.md") as readme_file:
|
||||||
long_description = fh.read()
|
long_description = readme_file.read()
|
||||||
|
|
||||||
with open("requirements.txt") as f:
|
with open("requirements.txt") as requirements_file:
|
||||||
requirements = f.read().splitlines()
|
requirements = requirements_file.read().splitlines()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="PyNyaaTa",
|
name="PyNyaaTa",
|
||||||
@ -21,7 +21,7 @@ setup(
|
|||||||
install_requires=requirements,
|
install_requires=requirements,
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': ['pynyaata=pynyaata:run'],
|
"console_scripts": ["pynyaata=pynyaata:run"],
|
||||||
},
|
},
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
|
Reference in New Issue
Block a user