forked from nordic-institute/X-Road-Security-Server-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.06 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
"""Project setup"""
from setuptools import setup, find_packages
from xrdsst.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='xrdsst',
version=VERSION,
python_requires='>=3.6',
description='A toolkit for configuring X-Road Security Server',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
classifiers=[],
install_requires=required,
author='Nordic Institute for Interoperability Solutions (NIIS)',
author_email='[email protected]',
url='https://github.com/nordic-institute/X-Road-Security-Server-toolkit',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'xrdsst': ['templates/*']},
setup_requires=['pytest-runner', 'pytest-pylint'],
tests_require=['pytest', 'pylint'],
include_package_data=True,
entry_points="""
[console_scripts]
xrdsst = xrdsst.main:main
""",
)