13 lines
220 B
Python
13 lines
220 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="capa",
|
|
version="0.1",
|
|
packages=find_packages(exclude=["tests"]),
|
|
install_requires=[
|
|
"setuptools",
|
|
"lxml",
|
|
"pytz"
|
|
],
|
|
)
|