Spaces:
Sleeping
Sleeping
Create setup.py
Browse files
setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from setuptools import setup, find_packages
|
| 2 |
+
import os
|
| 3 |
+
|
| 4 |
+
# Read requirements from requirements.txt
|
| 5 |
+
with open('requirements.txt') as f:
|
| 6 |
+
requirements = [line.strip() for line in f if line.strip() and not line.startswith('#')]
|
| 7 |
+
|
| 8 |
+
setup(
|
| 9 |
+
name='csm',
|
| 10 |
+
version='0.1.0',
|
| 11 |
+
packages=find_packages(),
|
| 12 |
+
install_requires=requirements,
|
| 13 |
+
)
|