-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.3 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
#!/usr/bin/env python
import setuptools
try:
from pip.req import parse_requirements
except ImportError: # pip >= 10.0.0
from pip._internal.req import parse_requirements
parsed_reqs = parse_requirements('requirements.txt', session='hack')
installed_reqs = [str(ir.requirement) for ir in parsed_reqs]
with open("README.md", "r") as fh:
long_description = fh.read()
name = "5Minds IT-Solutions GmbH & Co. KG"
setuptools.setup(
name="robotframework-processcube",
version=setuptools.sic('5.0.5-alpha.1'),
description="Robot Framework Keywords for processcube workflow engine.",
long_description=long_description,
long_description_content_type="text/markdown",
author=name,
author_email="[email protected]",
url="https://github.com/atlas-engine-contrib/robotframework-processcube",
packages=setuptools.find_packages(),
install_requires=installed_reqs,
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Framework :: Robot Framework",
],
license="MIT Licence",
)