-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
30 lines (28 loc) · 840 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
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
sys.exit("camisole requires Python 3.6 or later.")
setup(
name='camisole',
use_scm_version=True,
packages=find_packages(),
url='https://github.com/prologin/camisole',
license='GPL',
author='Antoine Pietri, Alexandre Macabies',
author_email='[email protected]',
description='An asyncio-based source compiler and test runner.',
install_requires=[
'aiohttp',
'msgpack',
'pyyaml',
],
setup_requires=['pytest-runner', 'setuptools_scm'],
tests_require=['pytest', 'pytest-cov', 'pytest-asyncio'],
test_suite='pytest',
entry_points={
'console_scripts': ['camisole = camisole.__main__:main'],
},
package_data={
'camisole': ['conf.default.yml'],
},
)