6 lines
203 B
Python
6 lines
203 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name="picotron", # Name of the package
|
|
version='0.1.0',
|
|
packages=find_packages(), # Automatically find packages in the current directory
|
|
) |