forked from Evernote/evernote-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 947 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
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="%i.%i.0" % (EDAM_VERSION_MAJOR, EDAM_VERSION_MINOR),
author='Evernote Corporation',
author_email='api@evernote.com',
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 :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
],
license='BSD',
install_requires=[
'oauth2',
],
)