-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.68 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
37
38
39
40
41
42
43
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='robotframework-bsnlibrary',
version='1.1.0',
packages=['BSNLibrary'],
url='https://github.com/HaaiHenkie/bsnlibrary',
project_urls={
'Documentation': 'https://haaihenkie.github.io/bsnlibrary/',
'Source': 'https://github.com/HaaiHenkie/bsnlibrary',
'Tracker': 'https://github.com/HaaiHenkie/bsnlibrary/issues',
},
license='MIT License (Expat)',
author='Henk van den Akker',
author_email='[email protected]',
description='Robot Framework library for generating BSNs (Dutch citizen service number)',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework :: Library",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
data_files=[
('Lib/site-packages/BSNLibrary/docs', ['docs/index.html']),
('Lib/site-packages/BSNLibrary/license', ['LICENSE.txt']),
('Lib/site-packages/BSNLibrary/tests/BSNLibrary_test', [
'tests/BSNLibrary_test/__init__.robot',
'tests/BSNLibrary_test/1_Functional_tests.robot',
'tests/BSNLibrary_test/2_Error_handling.robot',
'tests/BSNLibrary_test/3_Demos.robot',
'tests/BSNLibrary_test/Resource.robot'])
],
install_requires=['robotframework'],
python_requires='>=3'
)