-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 792 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 792 Bytes
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
#!/usr/bin/env python
from setuptools import setup
import base62
def readme():
try:
with open("README.rst") as f:
return f.read()
except:
return "(Could not read from README.rst)"
setup(
name="pybase62",
py_modules=["base62"],
version=base62.__version__,
description="Python module for base62 encoding",
long_description=readme(),
author="Sumin Byeon",
author_email="suminb@gmail.com",
url="http://github.com/suminb/base62",
packages=[],
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)