-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 997 Bytes
/
setup.py
File metadata and controls
36 lines (30 loc) · 997 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
33
34
35
36
from distutils.core import setup
from os import path
from setuptools import find_packages
DESCRIPTION = 'pyosmo - a model-based testing tool'
OWNER_NAMES = 'Olli-Pekka Puolitaival'
OWNER_EMAILS = 'oopee1@gmail.com'
# Utility function to cat in a file (used for the README)
def read(fname):
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, fname), encoding='utf-8') as f:
return f.read()
setup(
name='pyosmo',
version='0.1.3',
python_requires='>=3.11',
description=DESCRIPTION,
long_description=read('README.md'),
long_description_content_type='text/markdown',
author=OWNER_NAMES,
author_email=OWNER_EMAILS,
maintainer=OWNER_NAMES,
maintainer_email=OWNER_EMAILS,
packages=find_packages(include=['pyosmo', 'pyosmo.*']),
include_package_data=True,
license='MIT',
install_requires=['click'],
entry_points={
'console_scripts': ['pyosmo=pyosmo.main:pyosmo_cli'],
},
)