Completed
Pull Request — master (#345)
by
unknown
05:01
created

setup   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 39
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 32
dl 0
loc 39
rs 10
c 0
b 0
f 0
wmc 0
1
from setuptools import setup
2
3
with open('Readme.md') as f:
4
    readme = f.read()
5
6
7
setup(
8
    name='elodie',
9
    version='1.0.0',
10
    description='Your Personal EXIF-based Photo, Video and Audio Assistant',
11
    long_description=readme,
12
    long_description_content_type='text/markdown',
13
    author='Jaisen Mathai',
14
    author_email='[email protected]',
15
    url='https://github.com/jmathai/elodie',
16
    packages=[
17
        'elodie',
18
    ],
19
    entry_points={
20
        'console_scripts': [
21
            'elodie = elodie.elodie:main',
22
        ],
23
    },
24
    package_dir={'elodie': 'elodie'},
25
    include_package_data=True,
26
    install_requires=[
27
        'click==6.6',
28
        'requests==2.20.0',
29
        'Send2Trash==1.3.0',
30
        'future==0.16.0',
31
        'configparser==3.5.0',
32
        'tabulate==0.7.7',
33
        'Pillow==5.3.0',
34
    ],
35
    license="Apache 2.0",  # Not sure if this is correct
36
    keywords="photo organization photography",
37
    classifiers=[
38
        "License :: OSI Approved :: Apache Software License",
39
    ],
40
)
41
42