-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (30 loc) · 1 KB
/
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
34
35
36
37
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def get_version():
return "0.1.2"
def get_long_description():
with open("README.rst", "r") as f:
return f.read()
setup(
name="readable-content",
version=get_version(),
author="Nabin Khadka",
author_email="[email protected]",
license="MIT license",
long_description=get_long_description(),
description="Collect actual content of any article, blog, news, etc.",
url="https://github.com/nabinkhadka/readable-content",
packages=find_packages(),
install_requires=["beautifulsoup4", "lxml",],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)