-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.03 KB
/
setup.py
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
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='alfa-ci',
version='0.1.0',
license='GPLv3+',
author='Dennis Klein',
author_email='d.klein@gsi.de',
description='alfa-ci environment manager',
long_description=(read('README.md') + '\n\n'),
long_description_content_type='text/markdown',
url='https://github.com/FairRootGroup/alfa-ci',
package_dir={'': 'lib'},
packages=find_packages('lib'),
classifiers=[
'Programming Language :: Python :: 3',
('License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)'),
],
python_requires='>=3.6',
setup_requires=['wheel'],
test_requires=['pytest', 'coverage', 'cli-test-helpers'],
install_requires=['argcomplete', 'pyyaml'],
entry_points={
'console_scripts': [
'alfa-ci = alfaci.cli:main',
],
})