-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 1013 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (27 loc) · 1013 Bytes
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
import io
from os import path
from typing import Dict
from setuptools import find_packages, setup
version: Dict[str, str] = {}
with open('osecore/_version.py') as fp:
exec(fp.read(), version)
current_dir = path.abspath(path.dirname(__file__))
with io.open(path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ose-workbench-core',
version=version['__version__'],
packages=find_packages(exclude=['tests']),
author='G Roques',
url='https://github.com/gbroques/ose-workbench-core',
description='Core library common to all OSE workbenches.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[],
include_package_data=True,
classifiers=[
# Full List: https://pypi.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3 :: Only'
]
)