-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 778 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name = 'DotfilesLibrary',
version = '0.2.0.dev2',
author = 'Ethan Rose',
author_email = 'errose28@gmail.com',
packages = setuptools.find_packages(),
url = 'https://github.com/errose28/DotfilesLibrary',
description = 'A Robot Framework library for dotfile and other configuration management.',
long_description = open('README.md').read(),
license = 'Apache License 2.0',
platforms = 'any',
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Robot Framework"
"Framework :: Robot Framework :: Library"
],
python_requires = '>=3.9, <4',
install_requires = [ "robotframework" ]
)