Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nihui authored Feb 27, 2024
1 parent 8e4051c commit 65a8d15
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import time
from setuptools import setup, find_packages, Extension

ext = Extension(
Expand All @@ -10,6 +11,8 @@
)

setup_args = dict(
name = 'ruapu',
version = time.strftime("%Y%m%d", time.localtime())
packages = find_packages(where="."),
package_dir = {"": "."},
ext_modules = [ext],
Expand Down

0 comments on commit 65a8d15

Please sign in to comment.