Skip to content

Commit

Permalink
Merge pull request #9 from JordanWelsman/develop
Browse files Browse the repository at this point in the history
WIP: Push v0.3.0 build to main
  • Loading branch information
JordanWelsman committed Jan 19, 2023
2 parents 0b85610 + 9060ad7 commit d9ec643
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup

# Arguments
version = "0.2.2"
version = "0.3.0"
python_version = ">=3.10"

# Long description from README.md
Expand All @@ -19,21 +19,28 @@
author = 'Jordan Welsman',
author_email = 'welsman@lbl.gov',
url = 'https://github.com/JordanWelsman/nexport/',
py_modules = ["__init__", "colors", "utils"],
py_modules = ["__init__", "calculators", "colors", "models", "utils"],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
package_dir = {'': 'nexport'},
install_requires = [
"torch",
"jutils"
"jutils",
"numpy",
"torch"
],
extras_require = {
"dev": [
Expand Down

0 comments on commit d9ec643

Please sign in to comment.