generated from usnistgov/opensource-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 988 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup, find_packages
setup(
name='daffodillib',
version='1.0.0',
description='Library for the Daffodil prototyping system',
url='https://github.com/osamayousuf/example', # Replace with public URL
author='Osama Yousuf', # Replace
author_email='[email protected]', # Replace
license='BSD 2-clause',
# packages=['daffodillib'],
packages=find_packages(),
install_requires=[
'numpy',
'matplotlib',
'pandas',
],
# complete list from https://pypi.org/pypi?%3Aaction=list_classifiers
# useful when uploading to pypi
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3'
],
)