from setuptools import setup, find_packages import sys with open('requirements.txt', 'r') as f: requirements = f.read().splitlines() # ##each of the import statements for our own packages will need to be updated setup( name = 'notscared2', version = '1.0', description = 'A statistical computation library for SCA', url = 'https://github.com/decryptofy/notscared2', author = 'Aaron Frost, Jonah Bosland, Matthew Meyer, Utkarsh Saxena', install_requires = requirements, packages = find_packages(), ) #change install_requires to grab requirements from requirements.txt