Merge pull request #1321 from jooola/feat/update_setup.py
Update project details in setup tools.
This commit is contained in:
commit
54631bbbc1
23
api/setup.py
23
api/setup.py
|
@ -1,20 +1,24 @@
|
|||
import os
|
||||
import shutil
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
script_path = os.path.dirname(os.path.realpath(__file__))
|
||||
print(script_path)
|
||||
os.chdir(script_path)
|
||||
# Change directory since setuptools uses relative paths
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
setup(
|
||||
name="libretime-api",
|
||||
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(),
|
||||
include_package_data=True,
|
||||
description="LibreTime API backend server",
|
||||
url="https://github.com/LibreTime/libretime",
|
||||
author="LibreTime Contributors",
|
||||
scripts=["bin/libretime-api"],
|
||||
install_requires=[
|
||||
"coreapi",
|
||||
|
@ -25,9 +29,4 @@ setup(
|
|||
"model_bakery",
|
||||
"psycopg2",
|
||||
],
|
||||
project_urls={
|
||||
"Bug Tracker": "https://github.com/LibreTime/libretime/issues",
|
||||
"Documentation": "https://libretime.org",
|
||||
"Source Code": "https://github.com/LibreTime/libretime",
|
||||
},
|
||||
)
|
||||
|
|
|
@ -8,10 +8,14 @@ os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|||
setup(
|
||||
name="airtime-celery",
|
||||
version="0.1",
|
||||
description="Airtime Celery service",
|
||||
url="http://github.com/sourcefabric/Airtime",
|
||||
author="Sourcefabric",
|
||||
author_email="duncan.sommerville@sourcefabric.org",
|
||||
description="LibreTime Celery",
|
||||
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="MIT",
|
||||
packages=["airtime-celery"],
|
||||
install_requires=[
|
||||
|
|
|
@ -8,9 +8,14 @@ os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|||
setup(
|
||||
name="libretime-analyzer",
|
||||
version="0.1",
|
||||
description="Libretime Analyzer Worker and File Importer",
|
||||
url="https://libretime.org",
|
||||
description="Libretime Analyzer",
|
||||
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=["airtime_analyzer"],
|
||||
entry_points={
|
||||
|
|
|
@ -9,8 +9,13 @@ setup(
|
|||
name="api_clients",
|
||||
version="2.0.0",
|
||||
description="LibreTime API Client",
|
||||
url="http://github.com/LibreTime/Libretime",
|
||||
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=["api_clients"],
|
||||
install_requires=[
|
||||
|
|
|
@ -5,13 +5,17 @@ from setuptools import setup
|
|||
# Change directory since setuptools uses relative paths
|
||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||
|
||||
|
||||
setup(
|
||||
name="airtime-playout",
|
||||
version="1.0",
|
||||
description="Airtime Playout Engine",
|
||||
url="http://github.com/sourcefabric/Airtime",
|
||||
author="sourcefabric",
|
||||
description="LibreTime Playout",
|
||||
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=[
|
||||
"pypo",
|
||||
|
|
Loading…
Reference in New Issue