2018-10-21 16:37:53 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
from repobot import __version__
|
|
|
|
|
|
|
|
|
2019-05-04 19:38:21 -07:00
|
|
|
with open("requirements.txt") as f:
|
2019-05-04 21:26:27 -07:00
|
|
|
requirements = [l for l in f.readlines() if not l.startswith("-")]
|
2019-05-04 19:38:21 -07:00
|
|
|
|
|
|
|
|
2018-10-21 16:37:53 -07:00
|
|
|
setup(name='repobot',
|
|
|
|
version=__version__,
|
|
|
|
description='server for build artifact storage',
|
2019-05-04 19:38:21 -07:00
|
|
|
url='https://git.davepedu.com/dave/docker-artifact',
|
2018-10-21 16:37:53 -07:00
|
|
|
author='dpedu',
|
|
|
|
author_email='dave@davepedu.com',
|
|
|
|
packages=['repobot'],
|
|
|
|
entry_points={
|
|
|
|
"console_scripts": [
|
2019-05-30 21:33:19 -07:00
|
|
|
"repobotd = repobot.server:main", # legacy
|
|
|
|
"artifactd = repobot.server:main",
|
2019-05-05 00:06:05 -07:00
|
|
|
"rpcli = repobot.cli:main"
|
2018-10-21 16:37:53 -07:00
|
|
|
]
|
|
|
|
},
|
|
|
|
include_package_data=True,
|
2019-05-04 19:38:21 -07:00
|
|
|
install_requires=requirements,
|
2019-06-02 11:55:34 -07:00
|
|
|
package_data={'repobot': ['../templates/pypi/*.html',
|
|
|
|
'../templates/tar/*.html']},
|
2018-10-21 16:37:53 -07:00
|
|
|
zip_safe=False)
|