Merge pull request #1321 from jooola/feat/update_setup.py

Update project details in setup tools.
This commit is contained in:
Kyle Robbertze 2021-09-02 18:25:49 +00:00 committed by GitHub
commit 54631bbbc1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 40 additions and 23 deletions

View File

@ -1,20 +1,24 @@
import os import os
import shutil
from setuptools import find_packages, setup from setuptools import find_packages, setup
script_path = os.path.dirname(os.path.realpath(__file__)) # Change directory since setuptools uses relative paths
print(script_path) os.chdir(os.path.dirname(os.path.realpath(__file__)))
os.chdir(script_path)
setup( setup(
name="libretime-api", name="libretime-api",
version="2.0.0a1", version="2.0.0a1",
description="LibreTime API",
author="LibreTime Contributors",
url="https://github.com/libretime/libretime",
project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
license="AGPLv3",
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
description="LibreTime API backend server",
url="https://github.com/LibreTime/libretime",
author="LibreTime Contributors",
scripts=["bin/libretime-api"], scripts=["bin/libretime-api"],
install_requires=[ install_requires=[
"coreapi", "coreapi",
@ -25,9 +29,4 @@ setup(
"model_bakery", "model_bakery",
"psycopg2", "psycopg2",
], ],
project_urls={
"Bug Tracker": "https://github.com/LibreTime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/LibreTime/libretime",
},
) )

View File

@ -8,10 +8,14 @@ os.chdir(os.path.dirname(os.path.realpath(__file__)))
setup( setup(
name="airtime-celery", name="airtime-celery",
version="0.1", version="0.1",
description="Airtime Celery service", description="LibreTime Celery",
url="http://github.com/sourcefabric/Airtime", author="LibreTime Contributors",
author="Sourcefabric", url="https://github.com/libretime/libretime",
author_email="duncan.sommerville@sourcefabric.org", project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
license="MIT", license="MIT",
packages=["airtime-celery"], packages=["airtime-celery"],
install_requires=[ install_requires=[

View File

@ -8,9 +8,14 @@ os.chdir(os.path.dirname(os.path.realpath(__file__)))
setup( setup(
name="libretime-analyzer", name="libretime-analyzer",
version="0.1", version="0.1",
description="Libretime Analyzer Worker and File Importer", description="Libretime Analyzer",
url="https://libretime.org",
author="LibreTime Contributors", author="LibreTime Contributors",
url="https://github.com/libretime/libretime",
project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
license="AGPLv3", license="AGPLv3",
packages=["airtime_analyzer"], packages=["airtime_analyzer"],
entry_points={ entry_points={

View File

@ -9,8 +9,13 @@ setup(
name="api_clients", name="api_clients",
version="2.0.0", version="2.0.0",
description="LibreTime API Client", description="LibreTime API Client",
url="http://github.com/LibreTime/Libretime",
author="LibreTime Contributors", author="LibreTime Contributors",
url="https://github.com/libretime/libretime",
project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
license="AGPLv3", license="AGPLv3",
packages=["api_clients"], packages=["api_clients"],
install_requires=[ install_requires=[

View File

@ -5,13 +5,17 @@ from setuptools import setup
# Change directory since setuptools uses relative paths # Change directory since setuptools uses relative paths
os.chdir(os.path.dirname(os.path.realpath(__file__))) os.chdir(os.path.dirname(os.path.realpath(__file__)))
setup( setup(
name="airtime-playout", name="airtime-playout",
version="1.0", version="1.0",
description="Airtime Playout Engine", description="LibreTime Playout",
url="http://github.com/sourcefabric/Airtime", author="LibreTime Contributors",
author="sourcefabric", url="https://github.com/libretime/libretime",
project_urls={
"Bug Tracker": "https://github.com/libretime/libretime/issues",
"Documentation": "https://libretime.org",
"Source Code": "https://github.com/libretime/libretime",
},
license="AGPLv3", license="AGPLv3",
packages=[ packages=[
"pypo", "pypo",