30 lines
883 B
Python
30 lines
883 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup
|
|
from repobot import __version__
|
|
|
|
|
|
with open("requirements.txt") as f:
|
|
requirements = [l for l in f.readlines() if not l.startswith("-")]
|
|
|
|
|
|
setup(name='repobot',
|
|
version=__version__,
|
|
description='server for build artifact storage',
|
|
url='https://git.davepedu.com/dave/docker-artifact',
|
|
author='dpedu',
|
|
author_email='dave@davepedu.com',
|
|
packages=['repobot'],
|
|
entry_points={
|
|
"console_scripts": [
|
|
"repobotd = repobot.server:main", # legacy
|
|
"artifactd = repobot.server:main",
|
|
"rpcli = repobot.cli:main"
|
|
]
|
|
},
|
|
include_package_data=True,
|
|
install_requires=requirements,
|
|
package_data={'repobot': ['../templates/pypi/*.html',
|
|
'../templates/tar/*.html']},
|
|
zip_safe=False)
|