Make installable (ALMOST)
This commit is contained in:
parent
1cb9d90e73
commit
21a5a35262
15
setup.py
Normal file
15
setup.py
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='social-photos',
|
||||||
|
version='1.0',
|
||||||
|
packages=find_packages(),
|
||||||
|
install_requires=[
|
||||||
|
|
||||||
|
],
|
||||||
|
entry_points={
|
||||||
|
'console_scripts':[
|
||||||
|
'social-photos = social_photos.main:main'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
)
|
4
social_photos/__main__.py
Normal file
4
social_photos/__main__.py
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
from .main import main
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
Loading…
Reference in New Issue
Block a user