12 lines
205 B
Python
12 lines
205 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="plotting",
|
||
|
version="1.0",
|
||
|
packages=find_packages(),
|
||
|
install_requires=[
|
||
|
'numpy',
|
||
|
'pandas',
|
||
|
'plotly'
|
||
|
],
|
||
|
)
|