]> git.parisson.com Git - pdfannotator.git/commitdiff
Add setup.py
authorYoan Le Clanche <yoanl@pilotsystems.net>
Tue, 11 May 2021 08:56:10 +0000 (10:56 +0200)
committerYoan Le Clanche <yoanl@pilotsystems.net>
Tue, 11 May 2021 08:56:10 +0000 (10:56 +0200)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..31ad89e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+# -*- coding: utf-8 -*-
+from setuptools import setup, find_packages
+import os
+
+CLASSIFIERS = ['Environment :: Web Environment', 
+'Framework :: Django', 
+'Intended Audience :: Developers',
+'Programming Language :: Python', 
+'Programming Language :: JavaScript', 
+'Topic :: Software Development :: Libraries :: Python Modules',  
+]
+
+
+setup(
+  name = "pdfannotator",
+  description = "Add annotations to pdf",
+  author = "Pilotsystems",
+  author_email = "yoanl@pilotsystems.net",
+  version = '1.0.0',
+  install_requires = [
+        'Django>=1.4',
+  ],
+  platforms=['any'],
+  classifiers = CLASSIFIERS,
+  packages = find_packages(),
+  include_package_data = True,
+  zip_safe = False,
+)