Skip to content

Commit 2fd35a6

Browse files
committed
Updated LICENSE and README.
1 parent e2c5546 commit 2fd35a6

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 Dropbox Inc., http://www.dropbox.com/
1+
Copyright (c) 2014-2016 Dropbox Inc., http://www.dropbox.com/
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include ez_setup.py
2+
include LICENSE
3+
include *.rst
4+
include stone/target/swift_rsrc/*

setup.py

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,33 +17,40 @@
1717
install_reqs = ['ply>=3.4',
1818
'six>=1.3.0']
1919

20+
with open('LICENSE') as f:
21+
license = f.read()
22+
2023
dist = setup(
2124
name='stone',
2225
version='0.1',
2326
description='Stone is an interface description language (IDL) for APIs.',
24-
author='Dropbox',
25-
author_email='dev-platform@dropbox.com',
26-
url='http://www.dropbox.com/developers',
27+
author='Ken Elkabany',
28+
author_email='kelkabany@dropbox.com',
29+
maintainer='Dropbox',
30+
maintainer_email='dev-platform@dropbox.com',
31+
url='https://github.com/dropbox/stone',
2732
install_requires=install_reqs,
28-
license='LICENSE',
33+
license=license,
2934
zip_safe=False,
3035
packages=['stone',
3136
'stone.lang',
3237
'stone.target',
3338
'stone.target.python_rsrc'],
3439
long_description=open('README.rst').read(),
35-
platforms=['CPython 2.6', 'CPython 2.7'],
40+
platforms=['CPython 2.7', 'CPython 3.4', 'CPython 3.5'],
3641
entry_points={
3742
'console_scripts': ['stone=stone.cli:main'],
3843
},
3944
classifiers=[
40-
'Development Status :: 3 - Alpha',
45+
'Development Status :: 4 - Beta',
4146
'Intended Audience :: Developers',
4247
'Operating System :: POSIX',
4348
'Operating System :: Microsoft :: Windows',
4449
'Operating System :: MacOS :: MacOS X',
45-
'Programming Language :: Python :: 2.6',
4650
'Programming Language :: Python :: 2.7',
51+
'Programming Language :: Python :: 3.4',
52+
'Programming Language :: Python :: 3.5',
53+
'Topic :: Software Development :: Code Generators',
4754
'Topic :: Software Development :: Libraries :: Python Modules',
4855
],
4956
)

0 commit comments

Comments
 (0)