Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
1 contributor

Users who have contributed to this file

34 lines (31 sloc) 1.11 KB
from setuptools import setup
description = \
"""
This module is intended for use with Archives Unleashed Cloud
derivative data and the Archives Unleashed Cloud notebooks.
For more information, please visit https://archivesunleashed.org/.
"""
setup(
name='au_notebook',
version='0.0.1',
url='https://github.com/archivesunleashed/au_notebook',
install_requires=['matplotlib', 'networkx', 'nltk', 'numpy', 'pandas'],
author='Ryan Deschamps, Nick Ruest',
author_email='ryan.deschamps@gmail.com, ruestn@gmail.com',
license='Apache 2.0',
pcy_modules=['au_notebook'],
scripts=['au_notebook.py'],
description=description,
long_description_content_type='text/markdown',
long_description=open('README.md').read(),
package_data={'': ['README.md']},
platforms=['POSIX'],
test_suite='test',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python :: 3.7',
],
)
You can’t perform that action at this time.