Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dorbarker committed Sep 17, 2018
1 parent a870b5f commit d46c3d7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env python3

from setuptools import setup, find_packages

setup(

name='fsac',
version='0.1',
packages=find_packages(),
install_requires=[
'pandas>=0.22.0'
],

author='Dillon Barker',
author_email='[email protected]',

entry_points={
'console_scripts': [
'fsac = fsac:main'
]
}
)

0 comments on commit d46c3d7

Please sign in to comment.