2024-10-18 13:13:44 +08:00
|
|
|
from setuptools import setup, find_packages
|
2024-12-19 00:50:36 +08:00
|
|
|
|
|
|
|
|
def read_requirements():
|
|
|
|
|
with open('requirements.txt') as req:
|
|
|
|
|
return [line.strip() for line in req if line.strip() and not line.startswith('#')]
|
|
|
|
|
|
2024-10-18 13:13:44 +08:00
|
|
|
setup(
|
2024-12-19 00:50:36 +08:00
|
|
|
name="picotron",
|
2024-10-18 13:13:44 +08:00
|
|
|
version='0.1.0',
|
2024-12-19 00:50:36 +08:00
|
|
|
packages=find_packages(),
|
|
|
|
|
install_requires=read_requirements(),
|
2024-10-18 13:13:44 +08:00
|
|
|
)
|