-
Notifications
You must be signed in to change notification settings - Fork 181
/
setup.py
34 lines (29 loc) · 1 KB
/
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
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='[email protected]',
url='http://dev.evernote.com',
description='Evernote SDK for Python',
long_description=read('README.md'),
packages=find_packages('lib'),
packages=find_packages('lib',exclude=["*.thrift", "*.thrift.*", "thrift.*", "thrift"]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Libraries',
],
license='BSD',
install_requires=[
'thrift',
'oauth2',
],
)