-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (38 loc) · 2.03 KB
/
setup.py
File metadata and controls
45 lines (38 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup, find_packages
import pathlib
# Testpypi install with:
# pip install -i https://test.pypi.org/pypi/ --extra-index-url https://pypi.org/simple allcasts
# create packages
# python setup.py sdist bdist_wheel
# upload to PyPi with:
# twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
VERSION = '0.2.0'
REQUIREMENTS = ["PyInputPlus", "wget", "xmltodict", "colorama", "argparse", "SpeechRecognition"]
setup(
name='allcasts', # This is the name of your PyPI-package.
version=VERSION, # Update the version number for new releases
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='A simple command line tool to download all podcasts from a given RSS feed', # Give a short description about your library
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/illegalbyte/allcasts", # Provide either the link to your github or to your website
author="Lewis Gentle",
install_requires= REQUIREMENTS,
classifiers=[
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Utilities', # Define the topic of your package
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points = {
'console_scripts': ['allcasts=allcasts.allcasts:main'],
}
)