-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (26 loc) · 991 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# (c) Copyright 2019 CSSI.
# (c) This file is written as a plugin for the CSSI Core library and is made available under MIT license.
# (c) For more information, see https://github.com/project-cssi/cssi-plugin-boilerplate/blob/master/LICENSE.txt
# (c) Please forward any queries to the given email address. email: [email protected]
"""
Brief: Sample plugin for CSSI Core Library
Authors:
Brion Mario
"""
import os
from setuptools import setup
REQUIREMENTS = [line.strip() for line in
open(os.path.join("requirements.txt")).readlines()]
setup(
name='cssi_plugin_sample',
version='0.1.0',
url='https://github.com/project-cssi/cssi-plugin-boilerplate',
description='A sample contributor plugin for CSSI library',
author='Brion Mario',
author_email='[email protected]',
packages=['cssi_plugin_sample'],
install_requires=REQUIREMENTS,
license="The MIT License (MIT)"
)