Spaces:
Running
Running
File size: 470 Bytes
8b0ed14 57b839f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from setuptools import find_packages
from setuptools import setup
with open('requirements.txt') as f:
content = f.readlines()
requirements = [x.strip() for x in content if 'git+' not in x]
setup(name='autotab',
version="1.0",
description="Project Description",
packages=find_packages(),
install_requires=requirements,
test_suite='tests',
# include_package_data: to install data from MANIFEST.in
include_package_data=True)
|