-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (30 loc) · 1003 Bytes
/
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
#!/usr/bin/env python3
from sys import version_info, stderr
from setuptools import setup, find_packages
NAME = 'sharepg'
CURRENT_PYTHON = version_info[:2]
REQUIRED_PYTHON = (3, 10)
if CURRENT_PYTHON < REQUIRED_PYTHON:
stderr.write(
f"{NAME} requires Python {REQUIRED_PYTHON[0]}.{REQUIRED_PYTHON[1]} or higher and your current version is {CURRENT_PYTHON}.")
exit(1)
setup(
name=NAME,
version='0.0.2',
description='Variation graph simulation tool',
url='https://github.com/Tharos-ux/sharepg',
author='Tharos',
author_email='dubois.siegfried@inria.fr',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
license="LICENSE",
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=[
'tharos-pytools>=0.0.32',
'gfagraphs>=0.3.8',
'BubbleGun>=1.1.8',
],
entry_points={'console_scripts': ['sharepg=sharepg.main:main']}
)