registries_analysis/setup.py

11 lines
225 B
Python

from setuptools import find_packages, setup
setup(
name='src',
packages=find_packages(),
version='0.1.0',
description='A short description of the project.',
author='Andrea Mannocci',
license='MIT',
)