LICENSE/setup: update
This commit is contained in:
parent
6430dd09d0
commit
5e7ee3555b
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Unless otherwise noted, LiteScope is Copyright 2012-2018 / EnjoyDigital
|
Unless otherwise noted, LiteScope is Copyright 2012-2019 / EnjoyDigital
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without modification,
|
Redistribution and use in source and binary forms, with or without modification,
|
||||||
are permitted provided that the following conditions are met:
|
are permitted provided that the following conditions are met:
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -5,14 +5,14 @@ from setuptools import setup
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
|
|
||||||
|
|
||||||
if sys.version_info[:3] < (3, 3):
|
if sys.version_info[:3] < (3, 5):
|
||||||
raise SystemExit("You need Python 3.3+")
|
raise SystemExit("You need Python 3.5+")
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="litescope",
|
name="litescope",
|
||||||
version="0.2.dev",
|
version="0.2.dev",
|
||||||
description="small footprint and configurable embedded FPGA logic analyzer core",
|
description="Small footprint and configurable embedded FPGA logic analyzer core",
|
||||||
long_description=open("README").read(),
|
long_description=open("README").read(),
|
||||||
author="Florent Kermarrec",
|
author="Florent Kermarrec",
|
||||||
author_email="florent@enjoy-digital.fr",
|
author_email="florent@enjoy-digital.fr",
|
||||||
|
|
Loading…
Reference in New Issue