-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
36 lines (32 loc) · 995 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
32
33
34
35
36
import os
from setuptools import (
find_packages,
setup,
)
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='pictory',
version='0.1.0',
url='https://github.com/ramonsaraiva/pictory',
author='Ramon Saraiva',
author_email='[email protected]',
license='MIT',
description='simple tool to organize pictures and videos in lickable directories',
long_description=read('README.md'),
long_description_content_type='text/markdown',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
],
entry_points={
'console_scripts': ['pictory=pictory.pictory:main'],
},
)