diff --git a/MANIFEST.in b/MANIFEST.in index 9ca1924..6190e58 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -14,3 +14,4 @@ include arvpyf/_version.py # If including data files in the package, add them like: # include path/to/data_file +include arvpyf/tests/cassettes/* diff --git a/requirements.txt b/requirements.txt index 5289505..1992da0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,4 @@ -# List required packages in this file, one per line. +numpy +pandas +pytz +requests diff --git a/setup.py b/setup.py index bf0afd3..37aeb01 100644 --- a/setup.py +++ b/setup.py @@ -39,8 +39,8 @@ description="Archiver Python Frontend", long_description=readme, author="Brookhaven National Lab", - author_email='malitsky@bnl.gov', - url='https://github.com/malitsky/arvpyf', + author_email='DAMA@bnl.gov', + url='https://github.com/NSLS-II/arvpyf', packages=find_packages(exclude=['docs', 'tests']), entry_points={ 'console_scripts': [ @@ -53,6 +53,7 @@ # When adding files here, remember to update MANIFEST.in as well, # or else they will not be included in the distribution on PyPI! # 'path/to/data_file', + 'arvpyf/tests/cassettes/*', ] }, install_requires=requirements,