forked from egoexpress/evernote-sdk-python3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.06 KB
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
import os
from setuptools import setup, find_packages
constants = open('lib/evernote/edam/userstore/constants.py').read().split("\n")
for x in [x for x in constants if x.startswith('EDAM_VERSION')]:
exec(x)
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='evernote',
version="{major}.{minor}.0".format(major=EDAM_VERSION_MAJOR,
minor=EDAM_VERSION_MINOR),
author='Evernote Corporation',
author_email='[email protected]',
url='http://dev.evernote.com',
description='Evernote SDK for Python',
long_description=read('README.md'),
packages=find_packages('lib'),
package_dir={'': 'lib'},
classifiers=[
'Development Status :: 4 - Production/Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3'
],
license='BSD',
install_requires=[
'oauthlib',
'requests_oauthlib'
],
)