-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
31 lines (29 loc) · 828 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from distutils.core import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='pystata-kernel',
version='0.3.2',
packages=['pystata-kernel'],
package_data={'pystata-kernel': ['logo-64x64.png']},
description='A simple Jupyter kernel for Stata based on pystata',
long_description=readme,
author='Vinci Chow',
author_email='[email protected]',
url='https://github.com/ticoneva/pystata-kernel',
install_requires=[
'jupyter-client',
'ipython',
'ipykernel',
'packaging',
'pandas',
'numpy',
'beautifulsoup4'
],
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
)