-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 787 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (24 loc) · 787 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
from setuptools import setup
setup(
name="file-protector",
version="1.0.0",
license='BSD-3',
description="A Python File Protector",
author='Krisna Pranav',
author_email='krisna.pranav@gmail.com',
url='https://github.com/krishpranav/file-protector',
packages=['file-protector'],
package_data={
'file-protector': ['LICENSE']
},
install_requires=['future'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: System',
],
)