-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 997 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
"""Setup generator file."""
from setuptools import setup, find_packages
import sys
with open("README.md", "r") as f:
long_description = f.read()
requirements = open("requirements.txt").read().splitlines()
packages = find_packages()
packages.remove("tests")
setup(
name='iquail',
packages=packages,
version='2.0',
description='iQuail cross-platform installer',
author='Quail team',
long_description=long_description,
long_description_content_type="text/markdown",
author_email='[email protected]',
url='https://github.com/QuailTeam/iQuail',
keywords=['tool', 'deploy', 'installer',
'wizard', 'install', 'update', 'quail'],
classifiers=['Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development'
],
install_requires=requirements,
include_package_data=True
)