-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (25 loc) · 905 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
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIRED = f.read().splitlines()
with open(os.path.join(here, 'test-requirements.txt')) as f:
TEST_REQUIRED = f.read().splitlines()
setup(
name='capitains_nautilus',
version="2.0.0",
description='Resolver for Capitains Guidelines Repository',
url='http://github.com/Capitains/nautilus',
author='Thibault Clerice',
author_email='[email protected]',
license='Mozilla Public License Version 2.0',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=REQUIRED,
tests_require=TEST_REQUIRED,
entry_points={
'console_scripts': ['capitains-nautilus=capitains_nautilus.cmd:cmd'],
},
include_package_data=True,
test_suite="nose.collector",
zip_safe=False
)