mirror of https://github.com/m-labs/artiq.git
setup.py: really utf-8
This commit is contained in:
parent
f8c38c1c58
commit
47f3e70015
3
setup.py
3
setup.py
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env python3.5
|
#!/usr/bin/env python3.5
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
import sys
|
import sys
|
||||||
|
@ -53,7 +52,7 @@ setup(
|
||||||
author_email="artiq@lists.m-labs.hk",
|
author_email="artiq@lists.m-labs.hk",
|
||||||
url="https://m-labs.hk/artiq",
|
url="https://m-labs.hk/artiq",
|
||||||
description="Advanced Real-Time Infrastructure for Quantum physics",
|
description="Advanced Real-Time Infrastructure for Quantum physics",
|
||||||
long_description=open("README.rst").read(),
|
long_description=open("README.rst", encoding="utf-8").read(),
|
||||||
license="GPLv3+",
|
license="GPLv3+",
|
||||||
classifiers="""\
|
classifiers="""\
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
|
|
Loading…
Reference in New Issue