1- from setuptools import setup , find_packages
2-
3- with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4- long_description = fh .read ()
5-
6- setup (
7- name = 'analyzeMFT' ,
8- version = '3.1.0' ,
9- author = 'Benjamin Cance' ,
10- 11- package_dir = {'' : 'src' },
12- packages = find_packages (where = 'src' ),
13- package_data = {
14- 'analyzeMFT' : ['sql/*.sql' ],
15- },
16- url = 'http://github.com/rowingdude/analyzeMFT' ,
17- license = 'LICENSE.txt' ,
18- description = 'Analyze the $MFT from a NTFS filesystem.' ,
19- long_description = long_description ,
20- long_description_content_type = 'text/markdown' ,
21- classifiers = [
22- "Development Status :: 3 - Alpha" ,
23- "Intended Audience :: Developers" ,
24- "License :: OSI Approved :: MIT License" ,
25- "Operating System :: OS Independent" ,
26- "Programming Language :: Python :: 3" ,
27- "Programming Language :: Python :: 3.7" ,
28- "Programming Language :: Python :: 3.8" ,
29- "Programming Language :: Python :: 3.9" ,
30- ],
31- python_requires = ">=3.7" ,
32- install_requires = [
33- "pywin32;platform_system=='Windows'" ,
34- "openpyxl==3.0.10" ,
35- ],
36- entry_points = {
37- 'console_scripts' : [
38- 'analyzemft=analyzeMFT:main' ,
39- ],
40- },
1+ from setuptools import setup , find_packages
2+
3+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4+ long_description = fh .read ()
5+
6+ setup (
7+ name = 'analyzeMFT' ,
8+ version = '3.1.0' ,
9+ author = 'Benjamin Cance' ,
10+ 11+ package_dir = {'' : 'src' },
12+ packages = find_packages (where = 'src' ),
13+ package_data = {
14+ 'analyzeMFT' : ['sql/*.sql' ],
15+ },
16+ url = 'http://github.com/rowingdude/analyzeMFT' ,
17+ license = 'LICENSE.txt' ,
18+ description = 'Analyze the $MFT from a NTFS filesystem.' ,
19+ long_description = long_description ,
20+ long_description_content_type = 'text/markdown' ,
21+ classifiers = [
22+ "Development Status :: 3 - Alpha" ,
23+ "Intended Audience :: Developers" ,
24+ "License :: OSI Approved :: MIT License" ,
25+ "Operating System :: OS Independent" ,
26+ "Programming Language :: Python :: 3" ,
27+ "Programming Language :: Python :: 3.7" ,
28+ "Programming Language :: Python :: 3.8" ,
29+ "Programming Language :: Python :: 3.9" ,
30+ ],
31+ python_requires = ">=3.7" ,
32+ install_requires = [
33+ "pywin32;platform_system=='Windows'" ,
34+ "openpyxl==3.0.10" ,
35+ ],
36+ entry_points = {
37+ 'console_scripts' : [
38+ 'analyzemft=analyzeMFT:main' ,
39+ ],
40+ },
4141)
0 commit comments