-
Notifications
You must be signed in to change notification settings - Fork 196
/
setup.py
48 lines (41 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
import os
from setuptools import setup, find_packages
from importlib.machinery import SourceFileLoader
module_name = "nonocaptcha"
module = SourceFileLoader(
module_name, os.path.join(module_name, "__init__.py")
).load_module()
def load_requirements(fname):
""" load requirements from a pip requirements file """
with open(fname) as f:
line_iter = (line.strip() for line in f.readlines())
return [line for line in line_iter if line and line[0] != "#"]
setup(
name=module_name.replace("_", "-"),
version=module.__version__,
author=module.__author__,
author_email=module.authors_email,
license=module.__license__,
description=module.package_info,
url="https://github.com/mikeyy/nonoCAPTCHA",
long_description=open("README.rst").read(),
platforms="all",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: JavaScript",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
],
package_data={'data': ['*.*']},
include_package_data=True,
packages=find_packages(),
install_requires=load_requirements("requirements.txt"),
)