Slate/setup.py

13 lines
298 B
Python
Raw Normal View History

2023-07-06 18:06:20 +02:00
from setuptools import setup, find_packages
setup(
name='slate',
version='1.0.0',
# url='https://github.com/mypackage.git',
# author='Author Name',
# author_email='author@gmail.com',
# description='Description of my package',
packages=['.'],
install_requires=[],
)