-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 735 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 735 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_namespace_packages
from os import path
from codecs import open
import versioneer
cur_dir = path.abspath(path.dirname(__file__))
with open(path.join(cur_dir, 'requirements.txt'), 'r') as f:
requirements = f.read().split()
setup(
name='botcity-framework-web',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_namespace_packages(include=['botcity.*']),
url='https://www.github.com/botcity-dev/botcity-framework-web-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'
)