Skip to content
Snippets Groups Projects
Commit a3511ff3 authored by Juan Pablo Gonzalez Aguilera's avatar Juan Pablo Gonzalez Aguilera
Browse files

fix package setup

parent 43b573fe
No related branches found
No related tags found
1 merge request!2fix package setup
......@@ -4,6 +4,6 @@ pillow
scipy
pandas
xopt
emitopt
#emitopt
gpytorch
jupyter
\ No newline at end of file
from os import path
import versioneer
# import versioneer
from setuptools import find_packages, setup
......@@ -12,8 +12,9 @@ with open(path.join(cur_dir, "requirements.txt"), "r") as f:
setup(
name="AWAControl",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
version="0.0.1",
#version=versioneer.get_version(),
#cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
package_dir={"AWAControl": "AWAControl"},
long_description=open("README.md").read(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment