summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-08 16:18:06 -0700
committerDavid Luevano Alvarado <55825613+luevano@users.noreply.github.com>2020-03-08 16:18:06 -0700
commit2396f88317fd9243e707cf66ddaa4bc58503c827 (patch)
treee76f74e404a6548e1b0a3f495f9f013469c990ea
parentb4b03d40b4d121fb0c2cfcd74990d367f0c227c4 (diff)
Change lj_matrix to ml_exp, and py ver
-rw-r--r--setup.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 719ef3ce0..5093c723f 100644
--- a/setup.py
+++ b/setup.py
@@ -31,15 +31,15 @@ import os
from setuptools import find_packages, setup
-from lj_matrix.version import __version__
+from ml_exp.version import __version__
# Package meta-data.
-NAME = 'lj_matrix'
-DESCRIPTION = 'A Lennard Jones matrix exploration.'
+NAME = 'ml_exp'
+DESCRIPTION = 'A ML exploration.'
URL = 'https://github.com/luevano/lj_matrix'
EMAIL = 'a301436@uach.mx'
AUTHOR = 'David Luevano Alvarado'
-REQUIRES_PYTHON = '>=3.7'
+REQUIRES_PYTHON = '>=3.8'
VERSION = __version__
# VERSION = '0.0.1'
@@ -97,6 +97,6 @@ setup(
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.7'
+ 'Programming Language :: Python :: 3.8'
]
)