Skip to content

Instantly share code, notes, and snippets.

@dardanxhymshiti
Last active May 17, 2020 17:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dardanxhymshiti/9d486ce69b91dc8cc7c4150ddbb661d7 to your computer and use it in GitHub Desktop.
Save dardanxhymshiti/9d486ce69b91dc8cc7c4150ddbb661d7 to your computer and use it in GitHub Desktop.
A simple setup.py file for a pyspark project
from setuptools import setup, find_packages
__version__ = '1.0.0'
setup(
name='pyspark_seed',
version=__version__,
packages=find_packages(),
install_requires=['pyspark', 'boto3']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment