10 lines
155 B
Python
10 lines
155 B
Python
#!/usr/bin/env python
|
|
|
|
import setuptools
|
|
|
|
if __name__ == "__main__":
|
|
setuptools.setup(
|
|
name="Flask-SQLAlchemy",
|
|
version="3.0.2",
|
|
)
|