|
3 | 3 | from __future__ import absolute_import, print_function, unicode_literals |
4 | 4 |
|
5 | 5 | import sys |
| 6 | +import os |
6 | 7 |
|
7 | 8 | try: |
8 | 9 | from setuptools import setup, find_packages |
|
16 | 17 |
|
17 | 18 | """) |
18 | 19 |
|
| 20 | +HERE = os.path.abspath(os.path.dirname(__file__)) |
| 21 | + |
| 22 | +CLASSIFIERS = [ |
| 23 | + "License :: OSI Approved :: MIT License", |
| 24 | + "Programming Language :: Python", |
| 25 | + "Programming Language :: Python :: 2", |
| 26 | + "Programming Language :: Python :: 2.7", |
| 27 | + "Programming Language :: Python :: 3", |
| 28 | + "Programming Language :: Python :: 3.4", |
| 29 | + "Programming Language :: Python :: 3.5", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Programming Language :: Python :: 3.7", |
| 32 | + "Topic :: Software Development :: Libraries :: Wolfram Language Library" |
| 33 | +] |
| 34 | + |
| 35 | + |
| 36 | +def read(*rellibpath): |
| 37 | + with open(os.path.join(HERE, *rellibpath), 'r', encoding='utf-8') as fp: |
| 38 | + return fp.read() |
| 39 | + |
| 40 | + |
19 | 41 | setup( |
20 | 42 | name = 'wolframclient', |
21 | | - version = '1.0rc1', |
| 43 | + version = '1.0.1dev5', |
22 | 44 | description = 'A Python library with various tools to interact with the Wolfram Language and the Wolfram Cloud.', |
| 45 | + long_description = read('README.rst'), |
| 46 | + long_description_content_type = 'text/x-rst', |
| 47 | + keywords=['Wolfram Language', 'Wolfram Desktop', 'Mathematica', 'parser', 'serializer', 'WXF'], |
23 | 48 | author = 'Wolfram Research', |
24 | | - author_email = [ |
25 | | - 'dorianb@wolfram.com', |
26 | | - 'riccardod@wolfram.com' |
27 | | - ], |
| 49 | + author_email = 'dorianb@wolfram.com, riccardod@wolfram.com', |
28 | 50 | include_package_data=True, |
29 | 51 | packages=find_packages(), |
30 | 52 | test_suite='wolframclient.tests', |
31 | | - python_requires='>=2.7', |
| 53 | + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', |
32 | 54 | install_requires = [ |
33 | 55 | 'pip', |
34 | 56 | 'numpy', |
|
39 | 61 | ], |
40 | 62 | project_urls={ |
41 | 63 | 'Source code': 'https://github.com/WolframResearch/TODO', |
42 | | - 'Documentation': 'todo', |
| 64 | + 'Documentation': 'https://www.wolframcloud.com/objects/dorianb/lcl/python/doc/intro.html', |
43 | 65 | 'Wolfram Research': 'https://www.wolfram.com' |
44 | 66 | } |
45 | 67 | ) |
0 commit comments