forked from rahulkumaran/python-syntaxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 769 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 769 Bytes
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
from setuptools import setup
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "python-syntaxdb",
version = "0.0.1",
author = "Rahul Arulkumaran",
author_email = "rahulkumaran@gmail.com",
description = ("A Python moudle for accessing the SyntaxDB API"),
license = "MIT",
keywords = "syntaxdb",
url = "https://github.com/rahulkumaran/python-syntaxdb",
packages=['syntaxdb'],
long_description=read('README.rst'),
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Utilities",
],
install_requires=[
"requests",
],
package_data={
"": ["README.md", "LICENSE.md"]
}
)