File size: 323 Bytes
719e5d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
from setuptools import setup
from setuptools import find_packages, setup, Command
with open('requirements.txt', 'r') as f:
requires = f.read().splitlines()
setup(
name='object_foundations',
version = 0.0,
install_requirements=requires,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
) |