forked from botcity-dev/botcity-framework-core-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 895 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
from setuptools import setup, find_namespace_packages
from os import path
from codecs import open
import versioneer
import platform
cur_dir = path.abspath(path.dirname(__file__))
with open(path.join(cur_dir, 'requirements.txt'), 'r') as f:
requirements = f.read().split()
if platform.system() != "Windows":
try:
requirements.remove("pywinauto")
except ValueError:
pass
setup(
name='botcity-framework-core',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_namespace_packages(include=['botcity.*']),
url='https://www.github.com/botcity-dev/botcity-framework-core-python',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=requirements,
include_package_data=True,
python_requires='>=3.7'
)