mirror of
https://github.com/wassname/multifit.git
synced 2026-08-21 11:18:10 +08:00
8 lines
168 B
Python
8 lines
168 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from setuptools import setup, find_packages
|
|
setup(
|
|
name="multifit",
|
|
version="1.0",
|
|
packages=find_packages(),
|
|
) |