This will remove imports from __future__ that are no longer needed. https://docs.python.org/3.5/library/2to3.html#2to3fixer-future
15 lines
222 B
Python
15 lines
222 B
Python
|
|
|
|
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="capa",
|
|
version="0.1",
|
|
packages=find_packages(exclude=["tests"]),
|
|
install_requires=[
|
|
"setuptools",
|
|
"lxml",
|
|
"pytz"
|
|
],
|
|
)
|