-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (15 loc) · 591 Bytes
/
setup.py
File metadata and controls
18 lines (15 loc) · 591 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
# Read requirements.txt using utf-16 encoding to handle the BOM correctly
with open("requirements.txt", encoding="utf-16") as f:
install_requires = f.read().splitlines()
setup(
name="spicecode",
version="2.1.3", # version 2.0.0 = all features from N2
packages=find_packages(exclude=["spicecode-venv", "spicecode.egg-info"]),
install_requires=install_requires,
entry_points={
'console_scripts': [
'spice = cli.main:main', # This tells Python to run the main function in cli.main
],
},
)