File size: 567 Bytes
bd4eea7 |
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 |
from setuptools import setup, find_packages
import os
if __name__ == "__main__":
def _read_reqs(relpath):
fullpath = os.path.join(os.path.dirname(__file__), relpath)
with open(fullpath) as f:
return [
s.strip()
for s in f.readlines()
if (s.strip() and not s.startswith("#"))
]
setup(
name="sdata",
version="0.0.1",
description="",
packages=find_packages(),
# install_requires=REQUIREMENTS,
py_modules=["sdata"],
)
|