-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
33 lines (28 loc) · 838 Bytes
/
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
#!/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="[email protected]",
url="http://github.com/suminb/base62",
packages=[],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)