Commit bf7838a3 authored by Alex Nunes's avatar Alex Nunes
Browse files

Minor setup fixes

parent c1fcdbc7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
#!/bin/bash
python setup.py sdist upload -r testpypi;
python setup.py sdist upload -r pypi
twine upload --repository-url https://test.pypi.org/legacy/ dist/*;
twine upload dist/*;
rm -f ~/anaconda3/conda-bld/osx-64/resonate*;
conda-build conda.recipe &&
rm -rf conda-dist &&
+5 −4
Original line number Diff line number Diff line
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages
from codecs import open

from setuptools import find_packages, setup

with open('README', encoding='utf-8') as f:
with open('README') as f:
    readme = f.read()

with open('LICENSE', encoding='utf-8') as f:
with open('LICENSE') as f:
    license = f.read()

setup(