-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.08 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
import os
from setuptools import setup, find_packages
setup(
name="tripcode3",
version=__import__("tripcode", locals=locals()).__version__,
description="Yet another tripcode implementation in Python, just works steady",
keywords=["tripcode", "hash", "imageboard"],
long_description=open("./README.pypi.md", mode="r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="GLWTPL",
author="JL Connor",
# author_email="[email protected]",
url="https://github.com/ablaternae/py-tripcode",
# download_url="",
python_requires=">=3",
py_modules=["tripcode"],
setup_requires=["wheel"],
install_requires=["passlib"],
platforms="any",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: Freeware",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Communications",
"Topic :: Utilities",
],
)