-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (29 loc) · 1.17 KB
/
setup.py
File metadata and controls
42 lines (29 loc) · 1.17 KB
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
37
38
39
40
41
42
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='spin-rewriter-api',
version='1.0.0',
description='Spin Rewriter is a revolutionary article spinner that uses ENL Semantic Spinning to understand the meaning of text. It produces high quality, unique and readable spun articles with a click.',
long_description=long_description,
long_description_content_type="text/markdown",
keywords="spinner spinrewriter seo article enl semantic language english writing text",
url='https://www.spinrewriter.com',
author='Spin Rewriter',
author_email='info@spinrewriter.com',
license='Apache-2.0',
packages=setuptools.find_packages(),
include_package_data=False,
zip_safe=False,
install_requires=[
'requests'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
python_requires='>=3.5',
)